-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app,haptics,status-bar,keyboard): Supporting Swift Package Manag…
…er (#1886) Co-authored-by: Mark Anderson <[email protected]>
- Loading branch information
1 parent
c44bf16
commit 918ea30
Showing
84 changed files
with
320 additions
and
3,370 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 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"pins" : [ | ||
{ | ||
"identity" : "capacitor6-spm-test", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/ionic-team/capacitor6-spm-test.git", | ||
"state" : { | ||
"branch" : "main", | ||
"revision" : "b2e3d8d3ae3b421e5a0b22fd2a32347b40d1ed32" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// swift-tools-version: 5.9 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CapacitorAppPlugin", | ||
platforms: [.iOS(.v13)], | ||
products: [ | ||
.library( | ||
name: "AppPlugin", | ||
targets: ["AppPlugin"]) | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/ionic-team/capacitor6-spm-test.git", branch: "main") | ||
], | ||
targets: [ | ||
.target( | ||
name: "AppPlugin", | ||
dependencies: [ | ||
.product(name: "Capacitor", package: "capacitor6-spm-test"), | ||
.product(name: "Cordova", package: "capacitor6-spm-test") | ||
], | ||
path: "ios/Sources/AppPlugin"), | ||
.testTarget( | ||
name: "AppPluginTests", | ||
dependencies: ["AppPlugin"]) | ||
] | ||
) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
.build | ||
/Packages | ||
xcuserdata/ | ||
DerivedData/ | ||
.swiftpm/configuration/registries.json | ||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata | ||
.netrc |
Oops, something went wrong.