blob: 91b036547779241d2efc43bf2972981cacd2e517 [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
17<!-- Declare the contents of this Android application. The namespace
18 attribute brings in the Android platform namespace, and the package
19 supplies a unique name for the application. When writing your
20 own application, the package name must be changed from "com.example.*"
21 to come from a domain that you own or have control over. -->
22<manifest xmlns:android="http://schemas.android.com/apk/res/android"
23 package="com.android.apps.tag"
24>
25
26 <uses-permission android:name="android.permission.CALL_PHONE" />
27 <uses-permission android:name="android.permission.NFC" />
28
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"
48 >
49 <intent-filter>
50 <action android:name="android.nfc.action.NDEF_TAG_DISCOVERED"/>
51 <category android:name="android.intent.category.DEFAULT"/>
52 </intent-filter>
Jeff Hamilton0215c982010-10-18 17:27:21 -050053
54 <intent-filter>
55 <action android:name="android.intent.action.VIEW"/>
56 <data android:mimeType="vnd.android.cursor.item/ndef_msg"/>
57 <category android:name="android.intent.category.DEFAULT"/>
58 </intent-filter>
Jeff Hamilton79495342010-10-18 13:13:10 -050059 </activity>
60
Ben Komalod47bc642010-10-18 22:15:27 -070061 <activity android:name="MyTagActivity" />
62
Jeff Hamilton79495342010-10-18 13:13:10 -050063 <service android:name="TagService" />
64
Jeff Hamilton15ee1b92010-10-18 15:00:30 -050065 <provider android:name=".provider.TagProvider"
66 android:authorities="com.android.apps.tag"
67 android:syncable="false"
68 android:multiprocess="false"
69 android:exported="false"
70 />
71
Jeff Hamilton79495342010-10-18 13:13:10 -050072 </application>
73</manifest>