145 lines
6.0 KiB
XML
145 lines
6.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.dahe.gldriver">
|
|
|
|
<application
|
|
android:name=".base.App"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.GLDriver"
|
|
tools:targetApi="31">
|
|
|
|
<meta-data
|
|
android:name="CHANNEL"
|
|
android:value="${CHANNEL_VALUE}" />
|
|
|
|
<!-- 适配全面屏 Android O vivo&oppo -->
|
|
<meta-data
|
|
android:name="android.max_aspect"
|
|
android:value="2.2" /> <!-- 适配刘海屏、水滴屏 Android O 小米 -->
|
|
<meta-data
|
|
android:name="notch.config"
|
|
android:value="portrait|landscape" /> <!-- 适配刘海屏、水滴屏 Android O 华为 -->
|
|
<meta-data
|
|
android:name="android.notch_support"
|
|
android:value="true" />
|
|
|
|
<activity
|
|
android:name=".ui.LauncherActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/Theme.Splash"
|
|
android:windowSoftInputMode="adjustPan|stateHidden">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.HomeActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden">
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.account.LoginActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.account.CodeLoginActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
|
|
<!-- 司机车辆认证相关start -->
|
|
|
|
<activity
|
|
android:name=".ui.account.SelectRoleActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
|
|
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthPersonActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthDriverActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthQualificationActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthBankCardActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthFaceActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthDrivingActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
|
|
<activity
|
|
android:name=".ui.account.authperson.AuthRoadActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<activity
|
|
android:name=".ui.account.authteam.AuthTeamActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<!-- 司机车辆认证相关end -->
|
|
|
|
<!-- 运单相关start -->
|
|
<activity
|
|
android:name=".ui.waybill.activity.WaybillDetailActivity"
|
|
android:configChanges="keyboardHidden|orientation|locale"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustPan|stateHidden" />
|
|
<!-- 运单相关end -->
|
|
|
|
</application>
|
|
|
|
</manifest> |