Skip to main content

max / goingson

1.6 KB · 38 lines History Blame Raw
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
5 <!-- AndroidTV support -->
6 <uses-feature android:name="android.software.leanback" android:required="false" />
7
8 <application
9 android:icon="@mipmap/ic_launcher"
10 android:label="@string/app_name"
11 android:theme="@style/Theme.goingson_desktop"
12 android:usesCleartextTraffic="${usesCleartextTraffic}">
13 <activity
14 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
15 android:launchMode="singleTask"
16 android:label="@string/main_activity_title"
17 android:name=".MainActivity"
18 android:exported="true">
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN" />
21 <category android:name="android.intent.category.LAUNCHER" />
22 <!-- AndroidTV support -->
23 <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
24 </intent-filter>
25 </activity>
26
27 <provider
28 android:name="androidx.core.content.FileProvider"
29 android:authorities="${applicationId}.fileprovider"
30 android:exported="false"
31 android:grantUriPermissions="true">
32 <meta-data
33 android:name="android.support.FILE_PROVIDER_PATHS"
34 android:resource="@xml/file_paths" />
35 </provider>
36 </application>
37 </manifest>
38