44 lines
No EOL
1.8 KiB
XML
44 lines
No EOL
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.capstone.test" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="15"
|
|
android:targetSdkVersion="29" />
|
|
|
|
<instrumentation
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
android:functionalTest="false"
|
|
android:handleProfiling="false"
|
|
android:label="Tests for com.example.capstone"
|
|
android:targetPackage="com.example.capstone" />
|
|
|
|
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
|
|
|
<application android:debuggable="true" >
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
<activity
|
|
android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity"
|
|
android:theme="@style/InstrumentationActivityInvokerBootstrapActivityTheme" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity"
|
|
android:theme="@style/InstrumentationActivityInvokerEmptyActivityTheme" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity"
|
|
android:theme="@style/InstrumentationActivityInvokerFloatingActivityTheme" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |