forked from capacitor-community/admob
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:capacitor-community/admob into ca…
…pacitor-community-master
- Loading branch information
Showing
89 changed files
with
11,850 additions
and
9,902 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ node_modules/ | |
Pods | ||
Build | ||
xcuserdata | ||
.swiftpm | ||
|
||
# macOS files | ||
.DS_Store | ||
|
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 @@ | ||
npx lint-staged |
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,32 @@ | ||
{ | ||
"pins" : [ | ||
{ | ||
"identity" : "capacitor-swift-pm", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/ionic-team/capacitor-swift-pm.git", | ||
"state" : { | ||
"revision" : "bc99a4197e8a966c99912a644a9aa5710f7e3409", | ||
"version" : "7.0.1" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-package-manager-google-mobile-ads", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", | ||
"state" : { | ||
"revision" : "7778cc1ab037c10dbbe026959e51e616bd961be9", | ||
"version" : "11.13.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-package-manager-google-user-messaging-platform", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/googleads/swift-package-manager-google-user-messaging-platform.git", | ||
"state" : { | ||
"revision" : "708a282840c2171ee63bd93b87afa49fe507d70e", | ||
"version" : "2.7.0" | ||
} | ||
} | ||
], | ||
"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,30 @@ | ||
// swift-tools-version: 5.9 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CapacitorCommunityAdmob", | ||
platforms: [.iOS(.v14)], | ||
products: [ | ||
.library( | ||
name: "CapacitorCommunityAdmob", | ||
targets: ["AdMobPlugin"]) | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"), | ||
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", from: "11.3.0") | ||
], | ||
targets: [ | ||
.target( | ||
name: "AdMobPlugin", | ||
dependencies: [ | ||
.product(name: "Capacitor", package: "capacitor-swift-pm"), | ||
.product(name: "Cordova", package: "capacitor-swift-pm"), | ||
.product(name: "GoogleMobileAds", package: "swift-package-manager-google-mobile-ads") | ||
], | ||
path: "ios/Sources/AdMobPlugin"), | ||
.testTarget( | ||
name: "AdMobPluginTests", | ||
dependencies: ["AdMobPlugin"], | ||
path: "ios/Tests/AdMobPluginTests") | ||
] | ||
) |
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.