-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: remove binary packaging (#215)
* build: convert Swift Package to a source-based C-language target * build: convert MuxCore to a package dependency * chore: remove MUXSDKStats project, local binary, unused scripts * build: update version metadata * test: add .xctestplan * docs: update release steps to account for source based packaging * build: add shared scheme for Carthage support * ci: add a check for carthage build command * build: exclude include folder from pod sources * docs: revise the README * ci: update to Cocoapods 1.14 when using Xcode 15.0.1 * test: activate the application after launching
- Loading branch information
1 parent
0502d92
commit 974c276
Showing
103 changed files
with
875 additions
and
5,812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
77 changes: 0 additions & 77 deletions
77
MUXSDKStats/MUXSDKStats.xcodeproj/xcshareddata/xcschemes/MUXSDKStatsTv.xcscheme
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,45 @@ | ||
// swift-tools-version:5.3 | ||
// swift-tools-version:5.7 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "MUXSDKStats", | ||
platforms: [ | ||
.iOS(.v11), | ||
.tvOS(.v11) | ||
.iOS(.v12), | ||
.tvOS(.v12) | ||
], | ||
products: [ | ||
.library(name: "MUXSDKStats", targets: ["MUXSDKStatsTargets"]) | ||
.library( | ||
name: "MUXSDKStats", | ||
targets: ["MUXSDKStatsObjc"] | ||
) | ||
], | ||
dependencies: [ | ||
.package( | ||
name: "MuxCore", | ||
url: "https://github.com/muxinc/stats-sdk-objc.git", | ||
.exactItem("4.6.0") | ||
url: "https://github.com/muxinc/stats-sdk-objc.git", | ||
exact: "4.6.0" | ||
) | ||
], | ||
targets: [ | ||
.binaryTarget( | ||
name: "MUXSDKStats", | ||
path: "XCFramework/MUXSDKStats.xcframework" | ||
), | ||
.target( | ||
name: "MUXSDKStatsTargets", | ||
name: "MUXSDKStatsObjc", | ||
dependencies: [ | ||
"MuxCore", | ||
.target(name: "MUXSDKStats") | ||
.product( | ||
name: "MuxCore", | ||
package: "stats-sdk-objc" | ||
) | ||
], | ||
path: "SwiftPM" | ||
publicHeadersPath: "include" | ||
), | ||
.testTarget( | ||
name: "MUXSDKStatsObjcTests", | ||
dependencies: [ | ||
"MUXSDKStatsObjc", | ||
.product( | ||
name: "MuxCore", | ||
package: "stats-sdk-objc" | ||
) | ||
] | ||
) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.