blob: c26078bb60e84e3dfcc824588d03459a16f031f6 [file] [log] [blame]
Joe Onoratof9225f82009-05-05 18:34:31 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.backuptest">
3 <application>
4 <activity android:name="BackupTestActivity" android:label="_BackupTest">
5 <intent-filter>
6 <action android:name="android.intent.action.MAIN" />
7 <category android:name="android.intent.category.DEFAULT" />
8 <category android:name="android.intent.category.LAUNCHER" />
9 </intent-filter>
10 </activity>
11 <service android:name="BackupTestService">
12 <intent-filter>
13 <action android:name="android.backup.BackupService" />
14 </intent-filter>
15 </service>
16 </application>
17</manifest>