学考乐离线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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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_service_center.TestDetailActivity"
  16. android:exported="true" />
  17. <activity
  18. android:name=".module.m_memo.MemoTestActivity"
  19. android:exported="true" />
  20. <activity
  21. android:name=".module.m_memo.MemoListDetailActivity"
  22. android:exported="true" />
  23. <activity
  24. android:name=".module.learn.LearnCTaskActivity"
  25. android:exported="true" />
  26. <activity
  27. android:name=".module.learn.LearnCReadingActivity"
  28. android:exported="true" />
  29. <activity
  30. android:name=".module.learn.LearnCVideoActivity"
  31. android:configChanges="orientation|keyboardHidden|screenSize|locale"
  32. android:exported="true"
  33. android:screenOrientation="portrait"
  34. android:theme="@style/Theme.videoTheme"
  35. android:windowSoftInputMode="adjustPan|stateHidden" />
  36. <activity
  37. android:name=".module.learn.LearnExamActivity"
  38. android:exported="true" />
  39. <activity
  40. android:name=".module.learn.LearnWordActivity"
  41. android:exported="true" />
  42. <activity
  43. android:name=".module.m_center_learn.CoursePackMainActivity"
  44. android:exported="true" />
  45. <activity
  46. android:name=".module.splash.SplashActivity"
  47. android:configChanges="orientation|keyboardHidden|screenSize"
  48. android:exported="true"
  49. android:screenOrientation="portrait"
  50. android:theme="@style/Theme.Splash">
  51. <intent-filter>
  52. <action android:name="android.intent.action.MAIN" />
  53. <category android:name="android.intent.category.LAUNCHER" />
  54. </intent-filter>
  55. </activity>
  56. <activity
  57. android:name=".module.main.MainActivity"
  58. android:configChanges="layoutDirection|keyboard|screenSize|locale"
  59. android:launchMode="singleTask"
  60. android:screenOrientation="portrait"
  61. android:windowSoftInputMode="adjustPan|adjustResize|stateHidden" />
  62. </application>
  63. </manifest>