2009-05-05 18:34:31 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.backuptest">
|
|
|
|
<application>
|
|
|
|
<activity android:name="BackupTestActivity" android:label="_BackupTest">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<service android:name="BackupTestService">
|
|
|
|
<intent-filter>
|
2009-05-06 18:06:21 -07:00
|
|
|
<action android:name="android.backup.BackupService.SERVICE" />
|
2009-05-05 18:34:31 -07:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest>
|