forked from pulser/android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
191 lines (163 loc) · 7.78 KB
/
AndroidManifest.xml
File metadata and controls
191 lines (163 loc) · 7.78 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.twofours.surespot"
android:versionCode="59"
android:versionName="59">
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="18" />
<permission android:name="com.twofours.surespot.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.twofours.surespot.permission.C2D_MESSAGE" />
<!-- App receives GCM messages. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- GCM connects to Google Services. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-feature android:name="android.hardware.camera"
android:required="false" />
<supports-screens android:largeScreens="true"
android:xlargeScreens="true" />
<application android:name="com.twofours.surespot.SurespotApplication"
android:icon="@drawable/surespotlauncher" android:label="surespot"
android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
<receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.twofours.surespot" />
</intent-filter>
</receiver>
<!-- Used for install referral measurement -->
<service
android:name="com.google.analytics.tracking.android.CampaignTrackingService" />
<receiver android:name="com.twofours.surespot.SurespotBroadcastReceiver">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<service android:name="com.twofours.surespot.GCMIntentService" />
<service android:name="com.twofours.surespot.services.CredentialCachingService"
android:exported="false">
</service>
<activity android:name="com.twofours.surespot.activities.MainActivity"
android:label="@string/title_activity_main" android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize|stateUnchanged">
<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="image/*" />
</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>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="server.surespot.me" android:pathPrefix="/autoinvite"
android:scheme="https" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.activities.SignupActivity"
android:label="@string/title_activity_signup"
android:windowSoftInputMode="stateVisible">
</activity>
<activity android:name="com.twofours.surespot.activities.LoginActivity"
android:label="login" android:windowSoftInputMode="stateVisible">
</activity>
<activity android:name="com.twofours.surespot.images.ImageViewActivity"
android:noHistory="true">
</activity>
<activity android:name="com.twofours.surespot.images.ImageSelectActivity"
android:windowSoftInputMode="stateAlwaysHidden">
</activity>
<activity android:name="com.twofours.surespot.activities.SettingsActivity"
android:parentActivityName="com.actionbarsherlock.app.SherlockPreferenceActivity">
<meta-data android:name="android.support.PARENT_ACTIVITY"
android:value="com.actionbarsherlock.app.SherlockPreferenceActivity" />
</activity>
<activity android:name="com.twofours.surespot.backup.ExportIdentityActivity">
<intent-filter>
<action android:name="com.twofours.surespot.backup.ExportIdentityActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.backup.ImportIdentityActivity"
android:exported="true" android:screenOrientation="portrait">
<intent-filter>
<action android:name="com.twofours.surespot.backup.ImportIdentityActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.google.android.apps.drive.APP_ID"
android:value="id=428168563991" />
<intent-filter>
<action android:name="com.google.android.apps.drive.DRIVE_OPEN" />
<data android:mimeType="application/ssi" />
<data android:mimeType="application/vnd.google-apps.drive-sdk.428168563991" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.activities.ManageKeysActivity"
android:noHistory="true">
<intent-filter>
<action android:name="com.twofours.surespot.activities.ManageKeysActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.identity.DeleteIdentityActivity"
android:noHistory="true">
<intent-filter>
<action android:name="com.twofours.surespot.identity.DeleteIdentityActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.identity.ChangePasswordActivity"
android:noHistory="true">
<intent-filter>
<action android:name="com.twofours.surespot.identity.ChangePasswordActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.activities.ExternalInviteActivity"
android:label="@string/surespot" android:windowSoftInputMode="stateHidden">
</activity>
<activity android:name="com.twofours.surespot.contacts.ContactPickerActivity"
android:label="@string/surespot" android:noHistory="true">
</activity>
<activity android:name="com.twofours.surespot.billing.BillingActivity"
android:label="@string/surespot">
<intent-filter>
<action android:name="com.twofours.surespot.billing.BillingActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="org.acra.CrashReportDialog"
android:excludeFromRecents="true" android:finishOnTaskLaunch="true"
android:launchMode="singleInstance" android:noHistory="true"
android:theme="@android:style/Theme.Dialog" />
<activity android:name="com.twofours.surespot.activities.AboutActivity"
android:label="@string/title_activity_about">
<intent-filter>
<action android:name="com.twofours.surespot.activities.AboutActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.twofours.surespot.identity.SurespotKeystoreActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
</activity>
</application>
</manifest>