| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android">
- <application>
- <activity
- android:name=".ui.main.MainActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:exported="false"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan">
- </activity>
- <activity
- android:name=".ui.setting.PersonalSettingActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.message.MessageBoxActivity"
- android:launchMode="singleTop"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- </application>
- </manifest>
|