forked from barmstrong/bitcoin-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
32 lines (30 loc) · 1.74 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bitcoinandroid" android:versionCode="2"
android:versionName="1.1" android:installLocation="preferExternal" >
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
<application android:name=".ApplicationState" android:icon="@drawable/my_icon"
android:label="@string/app_name" android:theme="@style/CustomTheme"
android:backupAgent="WalletBackupAgent" android:restoreAnyVersion="true">
<activity android:name=".BitcoinWallet" android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.zxing.client.android.CaptureActivity"
android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity android:name="SendMoney" android:screenOrientation="portrait" />
<activity android:name="ReceiveMoney" android:screenOrientation="portrait" />
<meta-data android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIKgPF7k3L5tF3_mublqbqjq-Q81ef1qDkAZhTSg" />
</application>
</manifest>