-
Notifications
You must be signed in to change notification settings - Fork 14
/
AndroidManifest.xml
executable file
·260 lines (213 loc) · 9.5 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="piuk.blockchain.android"
android:installLocation="preferExternal"
android:versionCode="158"
android:versionName="4.0.17">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
<permission
android:name="piuk.blockchain.android.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="piuk.blockchain.android.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<!--
Creates a custom permission so only this app can receive its messages.
NOTE: the permission *must* be called PACKAGE.permission.C2D_MESSAGE,
where PACKAGE is the application's package name.
-->
<permission
android:name="piuk.blockchain.android.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="piuk.blockchain.android.permission.C2D_MESSAGE" />
<!-- This app has permission to register and receive data message. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
<application
android:name="piuk.blockchain.android.WalletApplication"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<!--
BroadcastReceiver that will receive intents from GCM
services and handle them to the custom IntentService.
The com.google.android.c2dm.permission.SEND permission is necessary
so only GCM services can send data messages for the app.
-->
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- Receives the registration id. -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="piuk.blockchain.android" />
</intent-filter>
</receiver>
<!--
Application-specific subclass of GCMBaseIntentService that will
handle received messages.
By default, it must be named .GCMIntentService, unless the
application uses a custom BroadcastReceiver that redefines its name.
-->
<service android:name="piuk.blockchain.android.GCMIntentService" />
<activity
android:name="info.blockchain.wallet.ui.MainActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan"
>
<intent-filter/>
</activity>
<activity android:name="info.blockchain.wallet.ui.PinEntryActivity"
android:label="@string/app_name"
android:noHistory="true"
android:excludeFromRecents="true"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="bitcoin" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.dm.zbar.android.scanner.ZBarScannerActivity"
android:label="@string/app_name"
android:screenOrientation="landscape" />
<service android:name="piuk.blockchain.android.service.WebsocketService" />
<activity android:name="info.blockchain.wallet.ui.AboutActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog" >
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.PairingHelp"
android:label="@string/app_name"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.ManualPairing"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
android:windowSoftInputMode="stateAlwaysVisible"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.SetupActivity"
android:label="@string/app_name" >
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.QRActivity"
android:label="@string/app_name" >
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.InternationalPrefixActivity"
android:label="@string/app_name" >
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.TxActivity"
android:label="@string/app_name" >
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.SettingsActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.CurrencySelector"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.AddressBookActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.EditSetting"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.SecureWallet"
android:label="@string/app_name"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.PinCreateActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.merchant.directory.MapActivity"
android:label="@string/app_name"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.merchant.directory.ListActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.merchant.directory.SuggestMerchant"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<intent-filter />
</activity>
<activity android:name="info.blockchain.wallet.ui.Exit" android:theme="@android:style/Theme.NoDisplay"/>
<receiver
android:name="piuk.blockchain.android.WalletBalanceWidgetProvider"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="piuk.blockchain.android.intent.action.ACTION_WIDGET_MERCHANT_DIRECTORY" />
<action android:name="piuk.blockchain.android.intent.action.ACTION_WIDGET_SCAN_RECEIVING" />
<action android:name="piuk.blockchain.android.intent.action.ACTION_WIDGET_REFRESH_BALANCE" />
<action android:name="piuk.blockchain.android.intent.action.ACTION_WIDGET_BALANCE_SCREEN" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/wallet_balance_widget" >
</meta-data>
</receiver>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyDF5Wx5xkE4pbBqseRaZu_pUt5FVuHAcko" />
<!-- Debug (Bill, MacBook Pro): AIzaSyBgIp1BfRBI_-EA6Ovg56iIjW6Jswebl3s -->
<!-- Prod: AIzaSyDF5Wx5xkE4pbBqseRaZu_pUt5FVuHAcko -->
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
</manifest>