学考乐离线App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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:name=".module.XKLApplication"
  7. android:allowBackup="true"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/Theme.XklLocal"
  13. tools:ignore="LockedOrientationActivity">
  14. <activity
  15. android:name=".module.m_memo.MemoListDetailActivity"
  16. android:exported="true" />
  17. <activity
  18. android:name=".module.learn.LearnCTaskActivity"
  19. android:exported="true" />
  20. <activity
  21. android:name=".module.learn.LearnCReadingActivity"
  22. android:exported="true" />
  23. <activity
  24. android:name=".module.learn.LearnCVideoActivity"
  25. android:configChanges="orientation|keyboardHidden|screenSize|locale"
  26. android:exported="true"
  27. android:screenOrientation="portrait"
  28. android:theme="@style/Theme.videoTheme"
  29. android:windowSoftInputMode="adjustPan|stateHidden" />
  30. <activity
  31. android:name=".module.learn.LearnExamActivity"
  32. android:exported="true" />
  33. <activity
  34. android:name=".module.learn.LearnWordActivity"
  35. android:exported="true" />
  36. <activity
  37. android:name=".module.m_center_learn.CoursePackMainActivity"
  38. android:exported="true" />
  39. <activity
  40. android:name=".module.splash.SplashActivity"
  41. android:configChanges="orientation|keyboardHidden|screenSize"
  42. android:exported="true"
  43. android:screenOrientation="portrait"
  44. android:theme="@style/Theme.Splash">
  45. <intent-filter>
  46. <action android:name="android.intent.action.MAIN" />
  47. <category android:name="android.intent.category.LAUNCHER" />
  48. </intent-filter>
  49. </activity>
  50. <activity
  51. android:name=".module.main.MainActivity"
  52. android:configChanges="layoutDirection|keyboard|screenSize|locale"
  53. android:launchMode="singleTask"
  54. android:screenOrientation="portrait"
  55. android:windowSoftInputMode="adjustPan|adjustResize|stateHidden" />
  56. </application>
  57. </manifest>