学考乐离线App

AndroidManifest.xml 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.xkl.cdl">
  5. <application
  6. android:allowBackup="true"
  7. android:icon="@mipmap/ic_launcher"
  8. android:label="@string/app_name"
  9. android:roundIcon="@mipmap/ic_launcher_round"
  10. android:supportsRtl="true"
  11. android:theme="@style/Theme.XklLocal"
  12. tools:ignore="LockedOrientationActivity">
  13. <activity
  14. android:name=".module.splash.SplashActivity"
  15. android:configChanges="orientation|keyboardHidden|screenSize"
  16. android:exported="true"
  17. android:screenOrientation="portrait"
  18. android:theme="@style/Theme.Splash">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. </activity>
  24. <activity
  25. android:name=".module.main.MainActivity"
  26. android:configChanges="layoutDirection|keyboard|screenSize|locale"
  27. android:launchMode="singleTask"
  28. android:screenOrientation="portrait"
  29. android:windowSoftInputMode="adjustPan|adjustResize|stateHidden" />
  30. </application>
  31. </manifest>