| 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 android:name="android.software.leanback" android:required="false" /> |
| 8 | |
| 9 | <application |
| 10 | android:icon="@mipmap/ic_launcher" |
| 11 | android:label="@string/app_name" |
| 12 | android:theme="@style/Theme.tauri_app" |
| 13 | android:usesCleartextTraffic="${usesCleartextTraffic}"> |
| 14 | <activity |
| 15 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" |
| 16 | android:launchMode="singleTask" |
| 17 | android:label="@string/main_activity_title" |
| 18 | android:name=".MainActivity" |
| 19 | android:exported="true"> |
| 20 | <intent-filter> |
| 21 | <action android:name="android.intent.action.MAIN" /> |
| 22 | <category android:name="android.intent.category.LAUNCHER" /> |
| 23 | <!-- AndroidTV support --> |
| 24 | <category android:name="android.intent.category.LEANBACK_LAUNCHER" /> |
| 25 | </intent-filter> |
| 26 | </activity> |
| 27 | |
| 28 | <provider |
| 29 | android:name="androidx.core.content.FileProvider" |
| 30 | android:authorities="${applicationId}.fileprovider" |
| 31 | android:exported="false" |
| 32 | android:grantUriPermissions="true"> |
| 33 | <meta-data |
| 34 | android:name="android.support.FILE_PROVIDER_PATHS" |
| 35 | android:resource="@xml/file_paths" /> |
| 36 | </provider> |
| 37 | |
| 38 | <meta-data |
| 39 | android:name="com.google.android.gms.ads.APPLICATION_ID" |
| 40 | android:value="ca-app-pub-3940256099942544~3347511713"/> |
| 41 | <meta-data |
| 42 | android:name="com.google.android.gms.ads.DELAY_APP_MEASUREMENT_INIT" |
| 43 | android:value="true"/> |
| 44 | </application> |
| 45 | </manifest> |