Created
December 6, 2023 20:23
-
-
Save LethalMaus/53103ff711a58b529849a0c1a4db9c72 to your computer and use it in GitHub Desktop.
admob.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="your.package.name"> | |
| <!-- Add the following permission for AdMob --> | |
| <uses-permission android:name="com.google.android.gms.permission.AD_ID"/> | |
| <application> | |
| <!-- Add your AdMob application ID as a meta-data tag --> | |
| <meta-data | |
| android:name="com.google.android.gms.ads.APPLICATION_ID" | |
| android:value="@string/ADMOB_ID"/> | |
| </application> | |
| </manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment