2022-10-31 17:44:02 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.tengshisoft.moduleactivity">
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:maxAspectRatio="2.4"
|
|
|
|
|
android:resizeableActivity="true">
|
2022-12-06 18:29:36 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.MineActivityListActivity"
|
|
|
|
|
android:exported="true" />
|
2022-10-31 17:44:02 +08:00
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.max_aspect"
|
|
|
|
|
android:value="2.4" /> <!-- 适配华为(huawei)刘海屏 -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.notch_support"
|
|
|
|
|
android:value="true" /> <!-- 适配小米(xiaomi)刘海屏 -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="notch.config"
|
|
|
|
|
android:value="portrait|landscape" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.ActivitySignUpActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
|
2022-12-06 18:29:36 +08:00
|
|
|
|
android:exported="true"
|
2022-10-31 17:44:02 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.ActivityDetailActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
|
2022-12-06 18:29:36 +08:00
|
|
|
|
android:exported="true"
|
2022-10-31 17:44:02 +08:00
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.ActivityMainActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
|
2022-12-06 18:29:36 +08:00
|
|
|
|
android:exported="true"
|
2022-10-31 17:44:02 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|