AndroidManifest.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:dist="http://schemas.android.com/apk/distribution"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. tools:ignore="LockedOrientationActivity">
  6. <dist:module
  7. dist:instant="false"
  8. dist:title="@string/module_setting">
  9. <dist:fusing dist:include="true" />
  10. <dist:delivery>
  11. <dist:install-time>
  12. <dist:removable dist:value="true" />
  13. </dist:install-time>
  14. </dist:delivery>
  15. </dist:module>
  16. <application>
  17. <activity
  18. android:name=".SettingActivity"
  19. android:screenOrientation="portrait"
  20. android:theme="@style/AppTheme" />
  21. <activity
  22. android:name=".about.AboutActivity"
  23. android:screenOrientation="portrait"
  24. android:theme="@style/AppTheme" />
  25. <activity
  26. android:name=".helpcenter.HelpCenterActivity"
  27. android:screenOrientation="portrait"
  28. android:theme="@style/AppTheme"
  29. android:windowSoftInputMode="adjustResize|adjustPan" />
  30. </application>
  31. </manifest>