70 lines
2.5 KiB
XML
70 lines
2.5 KiB
XML
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
package="com.yunbao.common">
|
||
|
|
||
|
<!-- <uses-permission android:name="android.permission.READ_PHONE_STATE" />-->
|
||
|
<!-- <uses-permission android:name="android.permission.INTERNET" />-->
|
||
|
<!-- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />-->
|
||
|
|
||
|
<application android:allowBackup="true">
|
||
|
|
||
|
<!-- <meta-data-->
|
||
|
<!-- android:name="com.google.ar.core"-->
|
||
|
<!-- android:value="optional" />-->
|
||
|
|
||
|
<activity
|
||
|
android:name="com.yunbao.common.activity.WebViewActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<activity
|
||
|
android:name="com.yalantis.ucrop.UCropActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<!--Android 7.0 拍照要用这个-->
|
||
|
|
||
|
<provider
|
||
|
android:name="androidx.core.content.FileProvider"
|
||
|
android:authorities="com.pdlive.shayu.fileprovider"
|
||
|
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.alipay.sdk.app.H5PayActivity"
|
||
|
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
|
||
|
android:exported="false"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:windowSoftInputMode="adjustResize|stateHidden"></activity>
|
||
|
<activity
|
||
|
android:name="com.alipay.sdk.app.H5AuthActivity"
|
||
|
android:configChanges="orientation|keyboardHidden|navigation"
|
||
|
android:exported="false"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:windowSoftInputMode="adjustResize|stateHidden"></activity>
|
||
|
<!--支付宝 end-->
|
||
|
|
||
|
<activity
|
||
|
android:name="com.yunbao.common.activity.ErrorActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<activity
|
||
|
android:name="com.yunbao.common.activity.SelectImageActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<activity
|
||
|
android:name="com.yunbao.common.activity.PreviewImageActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<activity
|
||
|
android:name="com.yunbao.common.activity.PreviewVideoActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|