/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: Tim Marston
  • Date: 2014-03-02 11:17:41 UTC
  • Revision ID: tim@ed.am-20140302111741-w9vcpjqpf5ia1kqe
updated NEWS

Show diffs side-by-side

added added

removed removed

26
26
 
27
27
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
28
28
                package="am.ed.exportcontacts"
29
 
                android:versionCode="10002"
30
 
                android:versionName="1.0.2">
 
29
                android:versionCode="10003"
 
30
                android:versionName="1.0.3">
 
31
 
 
32
        <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="18" />
 
33
 
 
34
        <uses-permission android:name="android.permission.READ_CONTACTS" />
 
35
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
31
36
 
32
37
        <application android:icon="@drawable/icon"
33
38
                        android:label="@string/app_name">
46
51
                                android:configChanges="keyboardHidden|orientation" />
47
52
 
48
53
        </application>
49
 
        <uses-sdk android:minSdkVersion="3" />
50
 
 
51
 
        <uses-permission android:name="android.permission.READ_CONTACTS" />
52
54
 
53
55
</manifest>