/android/export-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/export-contacts

« back to all changes in this revision

Viewing changes to AndroidManifest.xml

  • Committer: edam
  • Date: 2011-06-11 08:22:04 UTC
  • Revision ID: edam@waxworlds.org-20110611082204-u2v1ri3a8iayq9b4
- added ContactReader interface
- added ContactsContactReader class to read old-style android.Contacts data
- updated FileChooser from import contacts app
- updated TODO
- added Doit activity
- added Exporter
- added VcardExporter that writes vCards

Show diffs side-by-side

added added

removed removed

25
25
-->
26
26
 
27
27
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
28
 
        package="org.waxworlds.edam.exportcontacts"
29
 
        android:versionCode="1"
30
 
        android:versionName="0.9">
 
28
                package="org.waxworlds.edam.exportcontacts"
 
29
                android:versionCode="1"
 
30
                android:versionName="0.9">
31
31
 
32
 
        <application
33
 
                android:icon="@drawable/icon"
34
 
                android:label="@string/app_name"
35
 
                android:debuggable="true">
 
32
        <application android:icon="@drawable/icon"
 
33
                        android:label="@string/app_name"
 
34
                        android:debuggable="true">
36
35
 
37
36
                <activity android:name=".Intro"
38
 
                                android:label="@string/app_name">
 
37
                                android:label="@string/app_name"
 
38
                                android:configChanges="keyboardHidden|orientation">
39
39
                        <intent-filter>
40
40
                                <action android:name="android.intent.action.MAIN" />
41
41
                                <category android:name="android.intent.category.LAUNCHER" />
42
42
                        </intent-filter>
43
43
                </activity>
44
 
                <activity android:name=".ConfigureVCF"></activity>
 
44
                <activity android:name=".ConfigureVCF"
 
45
                                android:configChanges="keyboardHidden|orientation" />
 
46
                <activity android:name=".Doit"
 
47
                                android:configChanges="keyboardHidden|orientation" />
45
48
 
46
49
        </application>
47
50
        <uses-sdk android:minSdkVersion="3" />
48
51
 
 
52
        <uses-permission android:name="android.permission.READ_CONTACTS" />
 
53
 
49
54
</manifest>