Files
and-bak/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml

55 lines
2.1 KiB
XML
Raw Normal View History

2026-02-11 16:59:49 +08:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hikoncont.test" >
<uses-sdk
android:minSdkVersion="24"
android:targetSdkVersion="33" />
<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:functionalTest="false"
android:handleProfiling="false"
android:label="Tests for com.hikoncont"
android:targetPackage="com.hikoncont" />
<uses-permission android:name="android.permission.REORDER_TASKS" />
<queries>
<package android:name="androidx.test.orchestrator" />
<package android:name="androidx.test.services" />
<package android:name="com.google.android.apps.common.testing.services" />
</queries>
<application
android:debuggable="true"
android:extractNativeLibs="false" >
<uses-library android:name="android.test.runner" />
<activity
android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity"
android:exported="true"
android:theme="@style/WhiteBackgroundTheme" >
<intent-filter android:priority="-100" >
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity"
android:exported="true"
android:theme="@style/WhiteBackgroundTheme" >
<intent-filter android:priority="-100" >
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity"
android:exported="true"
android:theme="@style/WhiteBackgroundDialogTheme" >
<intent-filter android:priority="-100" >
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>