blob: 8410b205964bd4204c02b555db9414124d79bb8d [file] [log] [blame]
Jeff Hamilton79495342010-10-18 13:13:10 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Jeff Hamilton79495342010-10-18 13:13:10 -050017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.apps.tag"
Jeff Hamiltoncf63c602010-10-27 13:22:25 -050019 android:versionCode="100"
20 android:versionName="1.0"
Jeff Hamilton79495342010-10-18 13:13:10 -050021>
22
23 <uses-permission android:name="android.permission.CALL_PHONE" />
24 <uses-permission android:name="android.permission.NFC" />
Ben Komalo856d92e2010-10-24 11:59:04 -070025 <uses-permission android:name="android.permission.READ_CONTACTS"/>
Jeff Hamilton383e6d12010-10-29 16:21:55 -050026 <uses-permission android:name="android.permission.WAKE_LOCK" />
Jeff Hamilton93345012010-10-26 13:02:04 -050027 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
Jeff Hamilton79495342010-10-18 13:13:10 -050028
Jeff Hamiltonde2ed0c2010-10-21 15:49:35 -050029 <uses-feature android:name="android.hardware.nfc" required="true" />
30
Jeff Hamilton0215c982010-10-18 17:27:21 -050031 <application
32 android:icon="@drawable/ic_launcher_nfc"
33 android:label="@string/app_name"
34 >
Jeff Hamilton79495342010-10-18 13:13:10 -050035 <activity android:name="TagBrowserActivity"
Jeff Hamilton79495342010-10-18 13:13:10 -050036 android:theme="@android:style/Theme.NoTitleBar"
37 >
38 <intent-filter>
39 <action android:name="android.intent.action.MAIN"/>
40 <category android:name="android.intent.category.LAUNCHER"/>
41 </intent-filter>
42 </activity>
43
44 <activity android:name="TagList" />
45
46 <activity android:name="TagViewer"
47 android:theme="@android:style/Theme.NoTitleBar"
Jason parks40d9a0c2010-10-26 14:42:45 -050048 android:launchMode="singleTop"
Jeff Hamilton79495342010-10-18 13:13:10 -050049 >
50 <intent-filter>
Jeff Hamiltona29dc1b2010-10-28 17:44:37 -050051 <action android:name="android.nfc.action.TAG_DISCOVERED"/>
Jeff Hamilton79495342010-10-18 13:13:10 -050052 <category android:name="android.intent.category.DEFAULT"/>
53 </intent-filter>
Jeff Hamilton0215c982010-10-18 17:27:21 -050054
55 <intent-filter>
56 <action android:name="android.intent.action.VIEW"/>
57 <data android:mimeType="vnd.android.cursor.item/ndef_msg"/>
58 <category android:name="android.intent.category.DEFAULT"/>
59 </intent-filter>
Jeff Hamilton79495342010-10-18 13:13:10 -050060 </activity>
61
Ben Komalo49978882010-10-27 14:46:25 -070062 <activity android:name="MyTagActivity" android:label="@string/tab_my_tag">
63 <intent-filter>
64 <action android:name="android.intent.action.SEND"/>
65 <category android:name="android.intent.category.DEFAULT"/>
66 <data android:mimeType="text/plain" />
Ben Komalo3ed68602010-10-27 18:00:14 -070067 <data android:mimeType="text/x-vcard" />
Ben Komalo49978882010-10-27 14:46:25 -070068 </intent-filter>
69 </activity>
Ben Komalod47bc642010-10-18 22:15:27 -070070
Ben Komalo8e76ce32010-11-01 10:47:30 -070071 <activity android:name="AboutActivity"
72 android:label=""
73 android:theme="@style/AboutTheme"
74 android:launchMode="singleTop"
75 android:screenOrientation="portrait"
76 />
77
Jeff Hamilton79495342010-10-18 13:13:10 -050078 <service android:name="TagService" />
79
Jeff Hamilton15ee1b92010-10-18 15:00:30 -050080 <provider android:name=".provider.TagProvider"
81 android:authorities="com.android.apps.tag"
82 android:syncable="false"
83 android:multiprocess="false"
Jeff Hamilton15ee1b92010-10-18 15:00:30 -050084 />
85
Jeff Hamilton79495342010-10-18 13:13:10 -050086 </application>
87</manifest>