bzr branch
http://bzr.ed.am/android/import-contacts
1
by edam
Initial import |
1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 |
package="org.waxworlds.importcontacts" |
|
4 |
android:versionCode="1" |
|
5 |
android:versionName="1.0.0"> |
|
6 |
<application android:icon="@drawable/icon" android:label="@string/app_name"> |
|
7 |
<activity android:name=".ImportContacts" |
|
8 |
android:label="@string/app_name"> |
|
9 |
<intent-filter> |
|
10 |
<action android:name="android.intent.action.MAIN" /> |
|
11 |
<category android:name="android.intent.category.LAUNCHER" /> |
|
12 |
</intent-filter> |
|
13 |
</activity> |
|
14 |
||
15 |
<activity android:name=".ImportVCF"></activity> |
|
16 |
<activity android:name=".Merge"></activity> |
|
17 |
<activity android:name=".Doit"></activity> |
|
18 |
<activity android:name=".MergePrompt"></activity> |
|
19 |
||
20 |
</application> |
|
21 |
||
22 |
<uses-permission android:name="android.permission.READ_CONTACTS" /> |
|
23 |
<uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
|
24 |
||
25 |
</manifest> |