forked from nickng/google-tv-remote-jb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
85 lines (70 loc) · 3.57 KB
/
AndroidManifest.xml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<!-- The version number defined here is sent to the GTV box when the
remote connects to it. This number is compared with the one defined
in IpRemote/res/values/string.xml to determine if a new version is
available -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.apps.tvremote"
android:versionCode="23"
android:versionName="1.0.2"
android:installLocation="auto">
<application android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:debuggable="true">
<activity android:name=".StartupActivity" android:noHistory="true"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"/>
</intent-filter>
</activity>
<activity android:name="MainActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustPan"
android:screenOrientation="portrait" />
<activity android:name="KeyboardActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:windowSoftInputMode="stateAlwaysVisible|adjustResize"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="sensor"/>
<activity android:name="ShortcutsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="adjustPan"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"/>
<activity android:name="DeviceFinder"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/finder_label"
android:launchMode="singleTop"/>
<activity android:name="PairingActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/pairing_activity_label"
android:launchMode="singleTop"/>
<activity android:name="AboutActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:launchMode="singleTask"
android:screenOrientation="portrait" />
<activity android:name="TutorialActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:launchMode="singleTask"
android:screenOrientation="portrait" />
<service android:name="CoreService"
android:label="@string/core_service_label"
android:enabled="true"
android:exported="true"
android:permission="android.permission.INTERNET"/>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:required="true" android:name="android.hardware.touchscreen" />
<uses-feature android:required="true" android:name="android.hardware.wifi" />
<uses-sdk android:minSdkVersion="16"/>
<supports-screens android:smallScreens="false" />
</manifest>