92 lines
4.1 KiB
XML
92 lines
4.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
package="com.airkoon.base.test" >
|
||
|
|
|
||
|
|
<uses-sdk
|
||
|
|
android:minSdkVersion="24"
|
||
|
|
android:targetSdkVersion="28" />
|
||
|
|
|
||
|
|
<instrumentation
|
||
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
android:functionalTest="false"
|
||
|
|
android:handleProfiling="false"
|
||
|
|
android:label="Tests for com.airkoon.base.test"
|
||
|
|
android:targetPackage="com.airkoon.base.test" />
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
||
|
|
android:debuggable="true"
|
||
|
|
android:extractNativeLibs="false" >
|
||
|
|
<uses-library android:name="android.test.runner" />
|
||
|
|
|
||
|
|
<provider
|
||
|
|
android:name="com.luck.picture.lib.PictureFileProvider"
|
||
|
|
android:authorities="com.airkoon.base.test.provider"
|
||
|
|
android:exported="false"
|
||
|
|
android:grantUriPermissions="true" >
|
||
|
|
<meta-data
|
||
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
|
|
android:resource="@xml/file_paths" />
|
||
|
|
</provider>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureSelectorActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureSelectorWeChatStyleActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureSelectorCameraEmptyActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
||
|
|
android:theme="@style/Picture.Theme.Translucent" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureCustomCameraActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PicturePreviewActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureSelectorPreviewWeChatStyleActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureVideoPlayActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
||
|
|
android:screenOrientation="sensor" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PictureExternalPreviewActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.luck.picture.lib.PicturePlayAudioActivity"
|
||
|
|
android:configChanges="orientation|keyboardHidden|screenSize" />
|
||
|
|
<activity
|
||
|
|
android:name="com.yalantis.ucrop.UCropActivity"
|
||
|
|
android:theme="@style/Base.Theme.NoActionBar" />
|
||
|
|
<activity
|
||
|
|
android:name="com.yalantis.ucrop.PictureMultiCuttingActivity"
|
||
|
|
android:theme="@style/Base.Theme.NoActionBar" />
|
||
|
|
<activity
|
||
|
|
android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity"
|
||
|
|
android:theme="@android:style/Theme" >
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
<activity
|
||
|
|
android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity"
|
||
|
|
android:theme="@android:style/Theme" >
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
<activity
|
||
|
|
android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity"
|
||
|
|
android:theme="@android:style/Theme.Dialog" >
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|