-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
51 lines (39 loc) · 1.96 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
51 lines (39 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<!-- The following permission is needed to create notifications on Android's notification center -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<!-- In order to start a caching task and download content on Android 14 and later, the following permission is needed -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
<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:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/DolbyTheme.Offline">
<activity
android:name=".OfflineActivity"
android:theme="@style/DolbyTheme.Offline.SplashScreen"
android:windowSoftInputMode="stateAlwaysHidden"
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>
<activity
android:name=".PlayerActivity"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
android:parentActivityName=".OfflineActivity"/>
<meta-data
android:name="THEOPLAYER_LICENSE"
android:value="@string/theoplayer_test_license" />
</application>
</manifest>