-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
35 lines (29 loc) · 1.22 KB
/
AndroidManifest.xml
File metadata and controls
35 lines (29 loc) · 1.22 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
<uses-permission android:name="android.permission.INTERNET" />
<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:theme="@style/DolbyTheme.Base" >
<activity
android:name=".PlayerActivity"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
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" />
</application>
</manifest>