/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-07-13 17:41:49 UTC
  • Revision ID: edam@waxworlds.org-20100713174149-pynofo872e5ug6d4
- added compatibility with 8BIT encoding

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