AndroidManifest.xml 1.1 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android">
  3. <application>
  4. <activity
  5. android:name=".ui.main.MainActivity"
  6. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
  7. android:exported="false"
  8. android:launchMode="singleTask"
  9. android:screenOrientation="portrait"
  10. android:windowSoftInputMode="adjustPan">
  11. </activity>
  12. <activity
  13. android:name=".ui.setting.PersonalSettingActivity"
  14. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
  15. android:screenOrientation="portrait" />
  16. <activity
  17. android:name=".ui.message.MessageBoxActivity"
  18. android:launchMode="singleTop"
  19. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
  20. android:screenOrientation="portrait" />
  21. </application>
  22. </manifest>