22 lines
687 B
XML
22 lines
687 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="blog.wiwi.hoops.test" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="24"
|
|
android:targetSdkVersion="34" />
|
|
|
|
<instrumentation
|
|
android:name="android.test.InstrumentationTestRunner"
|
|
android:functionalTest="false"
|
|
android:handleProfiling="false"
|
|
android:label="Tests for blog.wiwi.hoops"
|
|
android:targetPackage="blog.wiwi.hoops" />
|
|
|
|
<application
|
|
android:debuggable="true"
|
|
android:extractNativeLibs="false" >
|
|
<uses-library android:name="android.test.runner" />
|
|
</application>
|
|
|
|
</manifest> |