Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.64 KB

README.md

File metadata and controls

52 lines (32 loc) · 1.64 KB

AdsGoogle is a library created by Mateus Sousa. For those who want to implement AdMob in their apps for monetization. This library abbreviated logic from google's own lib to make it easy to use or even scale.

Build Status Made by Mateus Sousa Last Commit Contributors License


🚀 Getting Started

Install pod

  • In Podfile include:

pod 'AdsGoogle', :git => 'https://github.com/MateusDeSousa/AdsGoogle.git'

Setup info.plist of the project

  • Include GADApplicationIdentifier with the respective id for your app created in AdMob.
  • Include GADIsAdManagerApp in your info.plist with value true.

Setup Ad

NativeAd

  • In your appdelegate, preferably in the boot method add the following code: AdsNativeManager.instance.setup(idNative: "id_ad")

Example

Using Ad

Native ad

Example