~david-ergo/astrid/removed-attributes-sync-fix

« back to all changes in this revision

Viewing changes to AndroidManifest.xml

  • Committer: Tim Su
  • Date: 2009-10-05 09:38:00 UTC
  • mfrom: (222.1.6 2.9.0)
  • Revision ID: tim@todoroo.com-20091005093800-xzldn7drs56p0k14
MergedĀ fromĀ 2.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
3
      package="com.timsu.astrid"
4
 
      android:versionName="2.8.8.1" android:versionCode="116">
 
4
      android:versionCode="118" android:versionName="2.9.0.1">
5
5
      
6
6
    <!-- ============================ Metadata ============================ -->   
7
7
      
39
39
                        android:label="@string/taskEdit_label">
40
40
                <intent-filter>
41
41
                <action android:name="android.intent.action.MAIN" />
42
 
                <category android:name="android.intent.category.HOME" />
 
42
                <category android:name="android.intent.category.DEFAULT" />
43
43
            </intent-filter>
44
44
        </activity>
45
45
 
47
47
        <activity android:name=".activities.TagView">
48
48
            <intent-filter>
49
49
                <action android:name="android.intent.action.VIEW" />
50
 
                <category android:name="android.intent.category.HOME" />
 
50
                <category android:name="android.intent.category.DEFAULT" />
51
51
            </intent-filter>
52
52
        </activity>
53
53
        
88
88
        <receiver android:name=".utilities.StartupReceiver">
89
89
            <intent-filter>
90
90
                 <action android:name="android.intent.action.BOOT_COMPLETED" />
91
 
                 <category android:name="android.intent.category.HOME" />
 
91
                 <category android:name="android.intent.category.DEFAULT" />
92
92
            </intent-filter>
93
93
        </receiver>
94
94