| 1 | <?xml version="1.0" encoding="utf-8" ?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
| 3 | <uses-permission android:name="android.permission.INTERNET" /> |
| 4 | <uses-permission android:name="com.google.android.gms.permission.AD_ID" /> |
| 5 | |
| 6 | <!-- AndroidTV support --> |
| 7 | <uses-feature |
| 8 | android:name="android.software.leanback" |
| 9 | android:required="false" |
| 10 | /> |
| 11 | |
| 12 | <application |
| 13 | android:icon="@mipmap/ic_launcher" |
| 14 | android:label="@string/app_name" |
| 15 | android:theme="@style/Theme.admob_reactjs" |
| 16 | android:usesCleartextTraffic="${usesCleartextTraffic}" |
| 17 | > |
| 18 | <activity |
| 19 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" |
| 20 | android:launchMode="singleTask" |
| 21 | android:label="@string/main_activity_title" |
| 22 | android:name=".MainActivity" |
| 23 | android:exported="true" |
| 24 | > |
| 25 | <intent-filter> |
| 26 | <action android:name="android.intent.action.MAIN" /> |
| 27 | <category android:name="android.intent.category.LAUNCHER" /> |
| 28 | <!-- AndroidTV support --> |
| 29 | <category |
| 30 | android:name="android.intent.category.LEANBACK_LAUNCHER" |
| 31 | /> |
| 32 | </intent-filter> |
| 33 | </activity> |
| 34 | |
| 35 | <provider |
| 36 | android:name="androidx.core.content.FileProvider" |
| 37 | android:authorities="${applicationId}.fileprovider" |
| 38 | android:exported="false" |
| 39 | android:grantUriPermissions="true" |
| 40 | > |
| 41 | <meta-data |
| 42 | android:name="android.support.FILE_PROVIDER_PATHS" |
| 43 | android:resource="@xml/file_paths" |
| 44 | /> |
| 45 | </provider> |
| 46 | |
| 47 | <meta-data |
| 48 | android:name="com.google.android.gms.ads.APPLICATION_ID" |
| 49 | android:value="ca-app-pub-3940256099942544~3347511713" |
| 50 | /> |
| 51 | <meta-data |
| 52 | android:name="com.google.android.gms.ads.DELAY_APP_MEASUREMENT_INIT" |
| 53 | android:value="true" |
| 54 | /> |
| 55 | </application> |
| 56 | </manifest> |