/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 11:34:38 UTC
  • Revision ID: edam@waxworlds.org-20110611113438-wu67n6akbyyln7kf
- fixed a couple of comment headers
- updated TODO
- fixed a bug where a "continue or abort" dialog always continued
- close cursors to prevent leaked resources
- fixed string that referred to Import Contacts app

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