forked from codebutler/farebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
107 lines (101 loc) · 4.61 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
AndroidManifest.xml
Copyright (C) 2011 Eric Butler
Authors:
Eric Butler <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codebutler.farebot"
android:versionCode="13"
android:versionName="2.2.1">
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="14" />
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:name="android.hardware.nfc" />
<application
android:label="@string/app_name"
android:icon="@drawable/launcher_icon"
android:theme="@style/Theme.Sherlock"
android:debuggable="true"
android:name=".FareBotApplication">
<uses-library android:name="com.google.android.maps" />
<activity
android:name=".activities.MainActivity"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="portrait">
<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.VIEW" />
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/com.codebutler.farebot.card" />
</intent-filter>
</activity>
<activity
android:name=".activities.ReadingTagActivity"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="portrait"
android:noHistory="true"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/filter_nfc" />
</activity>
<activity
android:name=".activities.CardInfoActivity"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/com.codebutler.farebot.card" />
</intent-filter>
</activity>
<activity
android:name=".activities.AdvancedCardInfoActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".activities.FareBotPreferenceActivity"
android:label="@string/preferences" />
<activity
android:name=".activities.TripMapActivity"
android:configChanges="keyboardHidden|orientation"/>
<activity
android:name=".activities.SupportedCardsActivity"
android:label="@string/supported_cards"
android:screenOrientation="portrait" />
<activity
android:name=".activities.CardsActivity"
android:label="@string/scanned_cards"
android:screenOrientation="portrait" />
<provider
android:name="com.codebutler.farebot.provider.CardProvider"
android:authorities="com.codebutler.farebot.cardprovider" />
</application>
</manifest>