-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
42 lines (38 loc) · 1.62 KB
/
AndroidManifest.xml
File metadata and controls
42 lines (38 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-feature
android:name="android.software.leanback"
android:required="false" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application
android:banner="@drawable/tv_banner"
android:icon="@mipmap/ic_launcher"
android:label="@string/appDisplayName"
android:localeConfig="@xml/locales_config"
android:theme="@style/DolbyTheme.Base">
<activity
android:name=".PlayerActivity"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|locale|layoutDirection"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="THEOPLAYER_LICENSE"
android:value="@string/theoplayer_test_license" />
<!-- Store preferred locale for API < 33, see AppCompatDelegate.setApplicationLocales -->
<service
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
android:enabled="false"
android:exported="false">
<meta-data
android:name="autoStoreLocales"
android:value="true" />
</service>
</application>
</manifest>