Skip to content

Commit 81f758e

Browse files
feat: Migrating ApplicationManifest & ApplicationManager to Swift
1 parent d39b22e commit 81f758e

36 files changed

Lines changed: 4071 additions & 3517 deletions

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ let package = Package(
2020
dependencies: [],
2121
path: "airborne_sdk_iOS/hyper-ota/Airborne/AirborneSwiftCore"
2222
),
23+
.target(
24+
name: "AirborneSwiftModel",
25+
dependencies: [],
26+
path: "airborne_sdk_iOS/hyper-ota/Airborne/AirborneSwiftModel"
27+
),
2328
.target(
2429
name: "AirborneObjC",
25-
dependencies: ["AirborneSwiftCore"],
30+
dependencies: ["AirborneSwiftCore", "AirborneSwiftModel"],
2631
path: "airborne_sdk_iOS/hyper-ota/Airborne/AirborneObjC",
2732
publicHeadersPath: "include",
2833
cSettings: [
@@ -34,7 +39,7 @@ let package = Package(
3439
),
3540
.target(
3641
name: "Airborne",
37-
dependencies: ["AirborneObjC", "AirborneSwiftCore"],
42+
dependencies: ["AirborneObjC", "AirborneSwiftCore", "AirborneSwiftModel"],
3843
path: "airborne_sdk_iOS/hyper-ota/Airborne/AirborneSwift"
3944
),
4045
.testTarget(

airborne_sdk_iOS/hyper-ota/Airborne.xcodeproj/project.pbxproj

Lines changed: 46 additions & 70 deletions
Large diffs are not rendered by default.

airborne_sdk_iOS/hyper-ota/Airborne/Airborne.modulemap

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
framework module Airborne {
22
umbrella header "Airborne.h"
33

4-
header "AJPApplicationManager.h"
5-
header "AJPApplicationManagerDelegate.h"
6-
header "AJPApplicationManifest.h"
7-
header "AJPApplicationConfig.h"
8-
header "AJPApplicationPackage.h"
9-
header "AJPApplicationResources.h"
10-
header "AJPResource.h"
114
header "AJPHelpers.h"
12-
13-
exclude header "AJPApplicationConstants.h"
14-
exclude header "AJPApplicationTracker.h"
5+
header "AJPApplicationTracker.h"
156

167
export *
178
module * { export * }

airborne_sdk_iOS/hyper-ota/Airborne/AirborneObjC/ApplicationManager/AJPApplicationConfig.m

Lines changed: 0 additions & 101 deletions
This file was deleted.

0 commit comments

Comments
 (0)