/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-12 00:16:42 UTC
  • Revision ID: edam@waxworlds.org-20101212001642-dqxbxww4ik9x7zbp
- update TODO

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="2"
30
 
                android:versionName="1.1">
 
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"
38
 
                                android:configChanges="keyboardHidden|orientation">
 
37
                                android:label="@string/app_name">
39
38
                        <intent-filter>
40
39
                                <action android:name="android.intent.action.MAIN" />
41
40
                                <category android:name="android.intent.category.LAUNCHER" />
42
41
                        </intent-filter>
43
42
                </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" />
 
43
                <activity android:name=".ConfigureVCF"></activity>
 
44
                <activity android:name=".Merge"></activity>
 
45
                <activity android:name=".Doit"></activity>
50
46
 
51
47
        </application>
52
48
        <uses-sdk android:minSdkVersion="3" />