-
Notifications
You must be signed in to change notification settings - Fork 32
/
AndroidManifest.xml
72 lines (63 loc) · 2.83 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.zweng.bankomatinfos2"
android:versionCode="16"
android:versionName="2.0.3" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.NFC" />
<!-- Only offer it to devices with NFC in play store -->
<uses-feature
android:name="android.hardware.nfc"
android:required="true" />
<!-- should also work without touch interface (only with d-pad) -->
<uses-feature
android:name="android.hardware.TOUCHSCREEN"
android:required="false" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- Startup activity.. -->
<activity
android:name="at.zweng.bankomatinfos.ui.MainActivity"
android:configChanges="orientation|screenSize"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Activity just for showing that NFC is disabled/unavailable -->
<activity
android:name="at.zweng.bankomatinfos.ui.NfcDisabledActivity"
android:label="@string/title_activity_nfc_disabled"
android:parentActivityName="at.zweng.bankomatinfos.ui.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="at.zweng.bankomatinfos.ui.MainActivity" />
</activity>
<!-- Displays reading results -->
<activity
android:name="at.zweng.bankomatinfos.ui.ResultActivity"
android:configChanges="orientation|screenSize"
android:parentActivityName="at.zweng.bankomatinfos.ui.MainActivity"
android:label="@string/title_activity_result" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="at.zweng.bankomatinfos.ui.MainActivity" />
</activity>
<!-- Settings -->
<activity
android:name="at.zweng.bankomatinfos.ui.SettingsActivity"
android:configChanges="orientation|screenSize"
android:label="@string/title_activity_settings"
android:parentActivityName="at.zweng.bankomatinfos.ui.MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="at.zweng.bankomatinfos.ui.MainActivity" />
</activity>
</application>
</manifest>