1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 package="io.appium.droiddriver.manualtest"> 5 6 <instrumentation 7 android:name="io.appium.droiddriver.runner.TestRunner" 8 android:targetPackage="io.appium.droiddriver.manualtest" /> 9 10 <!-- Needed for Android.mk --> 11 <uses-sdk 12 android:minSdkVersion="7" 13 android:targetSdkVersion="19" 14 tools:ignore="OldTargetApi,GradleOverrides" /> 15 16 <application 17 android:allowBackup="false" 18 tools:ignore="MissingApplicationIcon"> 19 <uses-library android:name="android.test.runner" /> 20 </application> 21 22 </manifest> 23