Swiftpack.co - c128128/AdsKit as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by c128128.
c128128/AdsKit 2.2.3
A Swift library to display Google AdMob ads without pain.
⭐️ 1
🕓 19 weeks ago
iOS
.package(url: "https://github.com/c128128/AdsKit.git", from: "2.2.3")

README is outdated. Please check source code.

AdsKit

Installation

Swift Package Manager

...

dependencies: [
    .package(url: "https://github.com/c128128/AdsKit.git", from: "2.0.0")
  ],
  targets: [
    .target(name: "MyProject", dependencies: ["AdsKit"])
  ]

...

Setup:

  1. Follow Update your Info.plist from official Google Mobile Ads SDK (iOS)

  2. Follow App Transport Security

  3. Follow Request App Tracking Transparency authorization

Please note: App Tracking Transparency Request will be made when Banner, Interstitial or Reward will be first called.

AdsKit support UMP if it was configured in Admob UI, and will fallback to Ads.tracking() if UMP return an error.

  1. AdsKit automatically reads adUnitID from Info.plist and automatically preload() ads if needed.
<!-- example: Reward -->
<key>GADReward</key>
<string>ca-app-pub-3940256099942544/1712485313</string>

<!-- example: Interstitial -->
<key>GADInterstitial</key>
<string>ca-app-pub-3940256099942544/4411468910</string>

Details:

  • AdsKit will automatically check if minimum necessary settings are met, if not app will crash on startup.

  • AdsKit will automatically preload() ads on app startup by default. Can be disabled, set GADAutoload in Info.plist, of type Boolean to NO.

  • AdsKit automatically will request requestTrackingAuthorization on load(). Please note:

    • GADAutoload == YES (default), Tracking Permission will be shown on first app startup.
    • GADAutoload == NO, Tracking Permission will be shown before calling Banner, Interstitial or Reward function.

Banner

Create a UIView inherited from Banner.

Screenshot 2022-06-03 at 17 53 12

Don't forget to set the adUnitID.

Screenshot 2022-06-03 at 17 54 33

If you want to set Banner only programmatically set empty string in Ad UnitID in the Storyboard.


@IBOutlet private weak var _banner: Banner!
...

// To set the Banner programmatically
self._banner.setAdUnitID("ca-app-pub-3940256099942544/2934735716")

// To remove the Banner
self._banner.setAdUnitID(nil)

Interstitial

Interstitial. After ad was shown, new ad will be preloaded automatically.

Ads.Google.interstitial()
    .subscribe()

Reward

Reward. After ad was shown, new ad will be preloaded automatically.

Ads.Google.reward()
    .subscribe()

Reporting

Reporting. Subscribe to Ads.Google.report to observe events from Ad delegates.

Ads.Google.report
    .subscribe()

TODO

  • ☐ Add test devices.

GitHub

link
Stars: 1
Last commit: 19 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Related Packages

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics