android_frameworks_base/tests/backup/AndroidManifest.xml

14 lines
648 B
XML
Raw Normal View History

2009-05-05 18:34:31 -07:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.backuptest">
<uses-permission android:name="android.permission.BACKUP_DATA" />
<application android:backupAgent="BackupTestAgent">
2009-05-05 18:34:31 -07:00
<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>
</application>
</manifest>