blob: 7a48fb396ad3ed63485ad7670a5ec5a6270459e4 [file] [log] [blame]
Romain Guy0dd05fa2010-03-31 15:20:13 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.example.android.xmladapters">
19
Gilles Debunne55f4a602010-06-17 15:02:41 -070020 <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
21
22 <uses-permission android:name="android.permission.INTERNET" />
Romain Guy0dd05fa2010-03-31 15:20:13 -070023 <uses-permission android:name="android.permission.READ_CONTACTS" />
24
25 <application android:label="@string/app_name">
Gilles Debunne55f4a602010-06-17 15:02:41 -070026 <activity android:name="ContactsListActivity"
27 android:label="@string/contacts_list_activity">
Romain Guy0dd05fa2010-03-31 15:20:13 -070028 <intent-filter>
29 <action android:name="android.intent.action.MAIN" />
30 <category android:name="android.intent.category.LAUNCHER" />
31 </intent-filter>
32 </activity>
Gilles Debunne55f4a602010-06-17 15:02:41 -070033
34 <activity android:name="PhotosListActivity"
35 android:label="@string/photos_list_activity">
36 <intent-filter>
37 <action android:name="android.intent.action.MAIN" />
38 <category android:name="android.intent.category.LAUNCHER" />
39 </intent-filter>
40 </activity>
41
42 <activity android:name="RssReaderActivity"
43 android:label="@string/rss_reader_activity">
44 <intent-filter>
45 <action android:name="android.intent.action.MAIN" />
46 <category android:name="android.intent.category.LAUNCHER" />
47 </intent-filter>
48 </activity>
49
Gilles Debunne968c2e42012-04-18 17:18:24 -070050 <provider android:name="XmlDocumentProvider" android:authorities="xmldocument" />
Gilles Debunne55f4a602010-06-17 15:02:41 -070051
Romain Guy0dd05fa2010-03-31 15:20:13 -070052 </application>
53
54</manifest>
Gilles Debunne55f4a602010-06-17 15:02:41 -070055