blob: 60fca32ada457ce504f8c4ffa86a0add4b53db45 [file] [log] [blame]
Trevor Johnsc6d634b2009-11-24 05:16:35 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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"
Trevor Johns0ed02242009-12-14 23:25:00 -080018 package="com.example.android.contactmanager"
Trevor Johnsc6d634b2009-11-24 05:16:35 -080019 android:versionCode="1" android:versionName="1.0">
Raphael Molla3dc6742010-11-22 12:39:47 -080020
21 <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="5" />
22 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
23 <uses-permission android:name="android.permission.READ_CONTACTS" />
24 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
25
Trevor Johnsc6d634b2009-11-24 05:16:35 -080026 <application android:label="@string/app_name" android:icon="@drawable/icon">
27 <activity android:name=".ContactManager" android:label="@string/app_name">
28 <intent-filter>
29 <action android:name="android.intent.action.MAIN" />
30 <category android:name="android.intent.category.LAUNCHER" />
31 </intent-filter>
32 </activity>
33 <activity android:name="ContactAdder" android:label="@string/addContactTitle">
34 </activity>
Trevor Johnsc6d634b2009-11-24 05:16:35 -080035 </application>
Trevor Johnsc6d634b2009-11-24 05:16:35 -080036</manifest>