forked from edwardteach42/stardroid-glass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
79 lines (71 loc) · 3.49 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.stardroid"
android:installLocation="auto"
android:vmSafeMode="false"
android:versionName="1.6.5"
android:versionCode="1113">
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.INTERNET"/>
<!-- For Google Analytics -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="15" />
<supports-screens
android:xlargeScreens="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<application android:label="@string/app_name"
android:allowBackup="true"
android:icon="@drawable/skymap_logo"
android:name="StardroidApplication">
<activity android:name=".activities.SplashScreenActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation="nosensor"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="com.google.android.glass.action.VOICE_TRIGGER" />
</intent-filter>
<meta-data
android:name="com.google.android.glass.VoiceTrigger"
android:resource="@xml/voice_trigger" />
</activity>
<activity android:name=".activities.DynamicStarMapActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.SEARCH"
android:configChanges="keyboardHidden|orientation" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity android:name=".activities.EditSettingsActivity"/>
<activity android:name=".activities.ImageGalleryActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<activity android:name=".activities.ImageDisplayActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<!-- Provides search suggestions. -->
<!-- TODO(johntaylor): What does syncable do? -->
<provider android:name="com.google.android.stardroid.search.SearchTermsProvider"
android:authorities="com.google.android.stardroid.searchterms"
android:syncable="false"/>
<activity android:name=".activities.ControlPanelActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<activity android:name=".activities.TosActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"></activity>
</application>
</manifest>