mirror of
https://github.com/appium/appium.git
synced 2026-01-25 03:38:52 -06:00
21 lines
570 B
Plaintext
21 lines
570 B
Plaintext
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="target.pkg.clean"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="8"
|
|
android:targetSdkVersion="18" />
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
|
|
<application android:allowBackup="true">
|
|
<uses-library android:name="android.test.runner" />
|
|
</application>
|
|
|
|
<instrumentation
|
|
android:name="clean.apk.Clean"
|
|
android:targetPackage="target.pkg" />
|
|
|
|
</manifest>
|