Romain Guy | 0dd05fa | 2010-03-31 15:20:13 -0700 | [diff] [blame] | 1 | <?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 Debunne | 55f4a60 | 2010-06-17 15:02:41 -0700 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" /> |
| 21 | |
| 22 | <uses-permission android:name="android.permission.INTERNET" /> |
Romain Guy | 0dd05fa | 2010-03-31 15:20:13 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 24 | |
| 25 | <application android:label="@string/app_name"> |
Gilles Debunne | 55f4a60 | 2010-06-17 15:02:41 -0700 | [diff] [blame] | 26 | <activity android:name="ContactsListActivity" |
| 27 | android:label="@string/contacts_list_activity"> |
Romain Guy | 0dd05fa | 2010-03-31 15:20:13 -0700 | [diff] [blame] | 28 | <intent-filter> |
| 29 | <action android:name="android.intent.action.MAIN" /> |
| 30 | <category android:name="android.intent.category.LAUNCHER" /> |
| 31 | </intent-filter> |
| 32 | </activity> |
Gilles Debunne | 55f4a60 | 2010-06-17 15:02:41 -0700 | [diff] [blame] | 33 | |
| 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 Debunne | 968c2e4 | 2012-04-18 17:18:24 -0700 | [diff] [blame] | 50 | <provider android:name="XmlDocumentProvider" android:authorities="xmldocument" /> |
Gilles Debunne | 55f4a60 | 2010-06-17 15:02:41 -0700 | [diff] [blame] | 51 | |
Romain Guy | 0dd05fa | 2010-03-31 15:20:13 -0700 | [diff] [blame] | 52 | </application> |
| 53 | |
| 54 | </manifest> |
Gilles Debunne | 55f4a60 | 2010-06-17 15:02:41 -0700 | [diff] [blame] | 55 | |