/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-07-04 14:54:18 UTC
  • Revision ID: edam@waxworlds.org-20100704145418-vcpya2sxsop0dlrq
- initial checkin
- copied intro and basic vcf-configure activities from import-contacts
- copied WizzardActivity class from import-contacts

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
 
 
32
 
        <application
33
 
                android:icon="@drawable/icon"
34
 
                android:label="@string/app_name"
35
 
                android:debuggable="true">
36
 
 
 
31
        <application android:icon="@drawable/icon" android:label="@string/app_name">
37
32
                <activity android:name=".Intro"
38
33
                                android:label="@string/app_name">
39
34
                        <intent-filter>
41
36
                                <category android:name="android.intent.category.LAUNCHER" />
42
37
                        </intent-filter>
43
38
                </activity>
 
39
 
44
40
                <activity android:name=".ConfigureVCF"></activity>
45
41
 
46
42
        </application>