/android/import-contacts

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

« back to all changes in this revision

Viewing changes to AndroidManifest.xml

  • Committer: edam
  • Date: 2010-12-14 15:55:43 UTC
  • Revision ID: edam@waxworlds.org-20101214155543-2ds0oqqj3zj9ejci
- take over orientation and keyboard hiden/shown config changes, to prevent our activities being restarted
- sort dirs/files alphabetically in filechooser

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