18 lines
443 B
XML
18 lines
443 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!--
|
||
|
|
Manifest for instrumentation tests
|
||
|
|
-->
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
package="org.robolectric.integrationtests.androidx">
|
||
|
|
<uses-sdk
|
||
|
|
android:targetSdkVersion="29" />
|
||
|
|
|
||
|
|
<application />
|
||
|
|
|
||
|
|
<instrumentation
|
||
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
android:targetPackage="org.robolectric">
|
||
|
|
</instrumentation>
|
||
|
|
|
||
|
|
</manifest>
|