How to Enable/Disable and Admob Settings
-
If you want to disable google admob then you can disable from admin panel -> settings -> admob settings
-
Create android and iOS app in google admob account. You can create google admob account from here. https://admob.google.com/home/
-
Create banner and interstitial ads and copy those ads id.
-
Paste those ads id in admin panel -> settings -> admob settings.
-
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}}" />
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>