Skip to content
/ AdsKit Public

A Swift library to display Google AdMob ads without pain.

Notifications You must be signed in to change notification settings

c128128/AdsKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A Swift library to display Google AdMob ads without pain.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages