/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: 2010-10-22 18:56:17 UTC
  • Revision ID: edam@waxworlds.org-20101022185617-6p6ivjqt28avwlzo
- added file chooser
- changed directory edit box for a directory "browse" button
- wired file chooser in to configure vcf page
- fixed intro
- made app debuggable
- added licence and changelog

Show diffs side-by-side

added added

removed removed

28
28
        package="org.waxworlds.edam.exportcontacts"
29
29
        android:versionCode="1"
30
30
        android:versionName="0.9">
31
 
        <application android:icon="@drawable/icon" android:label="@string/app_name">
 
31
 
 
32
        <application
 
33
                android:icon="@drawable/icon"
 
34
                android:label="@string/app_name"
 
35
                android:debuggable="true">
 
36
 
32
37
                <activity android:name=".Intro"
33
38
                                android:label="@string/app_name">
34
39
                        <intent-filter>
36
41
                                <category android:name="android.intent.category.LAUNCHER" />
37
42
                        </intent-filter>
38
43
                </activity>
39
 
 
40
44
                <activity android:name=".ConfigureVCF"></activity>
41
45
 
42
46
        </application>