-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathAndroidManifest.xml
144 lines (122 loc) · 5.87 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal"
package="piuk.blockchain"
android:versionCode="96"
android:versionName="3.04" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="android.hardware.nfc"
android:required="false" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
<application
android:name=".android.WalletApplication"
android:debuggable="false"
android:icon="@drawable/app_icon"
android:label="@string/app_name" >
<activity
android:name="piuk.blockchain.android.ui.WalletActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:launchMode="singleInstance"
android:screenOrientation="nosensor"
android:theme="@android:style/Theme.Light.NoTitleBar" />
<activity-alias
android:name="piuk.blockchain.android.WalletActivity"
android:targetActivity="piuk.blockchain.android.ui.WalletActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
<activity
android:name="piuk.blockchain.android.ui.SendCoinsActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:launchMode="singleTask"
android:screenOrientation="nosensor"
android:theme="@android:style/Theme.Light.NoTitleBar" >
<intent-filter android:label="@string/send_coins_activity_title" >
<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 android:label="@string/send_coins_activity_title" >
<action android:name="android.intent.action.WEB_SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter android:label="@string/send_coins_activity_title" >
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<data android:scheme="bitcoin" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="piuk.blockchain.android.ui.PairWalletActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:launchMode="singleTask"
android:screenOrientation="nosensor"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="piuk.blockchain.android.ui.RequestCoinsActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:screenOrientation="behind"
android:theme="@android:style/Theme.Light.NoTitleBar" />
<activity
android:name="piuk.blockchain.android.ui.TransactionActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:screenOrientation="behind"
android:theme="@android:style/Theme.Light.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="btctx" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<data android:mimeType="application/x-btctx" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".android.ui.WalletAddressesActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:screenOrientation="behind"
android:theme="@android:style/Theme.Light.NoTitleBar" />
<activity
android:name=".android.ui.PreferencesActivity"
android:screenOrientation="behind" />
<provider
android:name="piuk.blockchain.android.AddressBookProvider"
android:authorities="piuk.blockchain.android.address_book"
android:exported="false" />
<provider
android:name=".android.ExchangeRatesProvider"
android:authorities="piuk.blockchain.android.exchange_rates"
android:exported="false" />
<receiver
android:name="piuk.blockchain.android.WalletBalanceWidgetProvider"
android:label="Blockchain Balance" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/wallet_balance_widget" />
</receiver>
<service android:name="piuk.blockchain.android.BlockchainService" />
</application>
</manifest>