Skip to main content

How to Enable/Disable and Admob Settings

  1. If you want to disable google admob then you can disable from admin panel -> settings -> admob settings

  2. Create android and iOS app in google admob account. You can create google admob account from here. https://admob.google.com/home/

  3. Create banner and interstitial ads and copy those ads id.

  4. Paste those ads id in admin panel -> settings -> admob settings.

    Admob 1

  5. You have to setup google admob app id for both Platform.

Android Setup

Next, open android ‣ app ‣ src ‣ main ‣ AndroidManifest.xml and paste Google Admob Android App Id meta data tag into your application tag before the activity tag, placing the Admob Android App Id you copied before.

<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="{{YOUR_GOOGLE_ADMOB_ANDROID_APP_ID_HERE}}" />

Admob 3

iOS Setup

Next, open the ios ‣ Runner ‣ Info.plist file and paste the following code at shown in image.

<key>GADApplicationIdentifier</key>
<string>{{"PLACE_YOUR_GOOGLE_ADMOB_IOS_APP_ID"}}</string>

Admob 2