AndroidManifest.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.edufound.reader"
  4. android:versionCode="100"
  5. android:versionName="0.0.1" >
  6. <uses-sdk
  7. xmlns:android="http://schemas.android.com/apk/res/android"
  8. android:minSdkVersion="21"
  9. android:targetSdkVersion="28" />
  10. <uses-permission
  11. xmlns:android="http://schemas.android.com/apk/res/android"
  12. android:name="android.permission.INTERNET" /> <!-- 网络通信 -->
  13. <uses-permission
  14. xmlns:android="http://schemas.android.com/apk/res/android"
  15. android:name="android.permission.ACCESS_NETWORK_STATE" />
  16. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  17. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  18. <uses-permission android:name="android.permission.RECORD_AUDIO" />
  19. <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
  20. <uses-permission
  21. xmlns:android="http://schemas.android.com/apk/res/android"
  22. android:name="android.permission.ACCESS_WIFI_STATE" />
  23. <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  24. <uses-permission
  25. xmlns:android="http://schemas.android.com/apk/res/android"
  26. android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  27. <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  28. <queries package="com.edufound.reader" >
  29. <package android:name="com.tencent.mm" />
  30. <intent>
  31. <action android:name="android.media.action.IMAGE_CAPTURE" >
  32. </action>
  33. </intent>
  34. <intent>
  35. <action android:name="android.media.action.ACTION_VIDEO_CAPTURE" >
  36. </action>
  37. </intent>
  38. </queries>
  39. <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> <!-- 适配Android R包可见性 结束 -->
  40. <uses-permission
  41. xmlns:android="http://schemas.android.com/apk/res/android"
  42. android:name="android.permission.VIBRATE" />
  43. <uses-permission
  44. xmlns:android="http://schemas.android.com/apk/res/android"
  45. android:name="android.permission.ALARM_LOCK" />
  46. <uses-permission
  47. xmlns:android="http://schemas.android.com/apk/res/android"
  48. android:name="android.permission.WAKE_LOCK" />
  49. <permission
  50. xmlns:android="http://schemas.android.com/apk/res/android"
  51. android:name="com.edufound.reader.vfs.broadcast"
  52. android:protectionLevel="signature" />
  53. <uses-permission
  54. xmlns:android="http://schemas.android.com/apk/res/android"
  55. android:name="com.edufound.reader.vfs.broadcast" />
  56. <uses-permission
  57. xmlns:android="http://schemas.android.com/apk/res/android"
  58. android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
  59. <uses-permission
  60. xmlns:android="http://schemas.android.com/apk/res/android"
  61. android:name="android.permission.CAMERA"
  62. android:required="true" />
  63. <uses-feature
  64. xmlns:android="http://schemas.android.com/apk/res/android"
  65. android:name="android.hardware.camera"
  66. android:required="true" />
  67. <uses-feature
  68. xmlns:android="http://schemas.android.com/apk/res/android"
  69. android:name="android.hardware.camera.autofocus"
  70. android:required="false" />
  71. <uses-permission
  72. xmlns:android="http://schemas.android.com/apk/res/android"
  73. android:name="android.permission.CHANGE_NETWORK_STATE" />
  74. <uses-permission
  75. xmlns:android="http://schemas.android.com/apk/res/android"
  76. android:name="android.permission.CHANGE_WIFI_STATE" />
  77. <uses-permission
  78. xmlns:android="http://schemas.android.com/apk/res/android"
  79. android:name="android.permission.BLUETOOTH" />
  80. <uses-permission
  81. xmlns:android="http://schemas.android.com/apk/res/android"
  82. android:name="android.permission.BLUETOOTH_ADMIN" />
  83. <uses-permission
  84. xmlns:android="http://schemas.android.com/apk/res/android"
  85. android:name="android.permission.NFC" />
  86. <uses-permission
  87. xmlns:android="http://schemas.android.com/apk/res/android"
  88. android:name="android.permission.READ_EXTERNAL_STORAGE" />
  89. <permission
  90. xmlns:android="http://schemas.android.com/apk/res/android"
  91. android:name="com.edufound.reader.voiceassist.permission.READ"
  92. android:protectionLevel="normal" />
  93. <permission
  94. xmlns:android="http://schemas.android.com/apk/res/android"
  95. android:name="com.edufound.reader.voiceassist.permission.WRITE"
  96. android:protectionLevel="normal" />
  97. <uses-permission android:name="com.google.android.gms.permission.AD_ID" />
  98. <application
  99. xmlns:android="http://schemas.android.com/apk/res/android"
  100. android:name="com.edufound.reader.DemoApplication"
  101. android:allowBackup="false"
  102. android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  103. android:icon="@mipmap/ic_launcher"
  104. android:label="@string/app_name"
  105. android:persistent="true"
  106. android:requestLegacyExternalStorage="true"
  107. android:testOnly="true"
  108. android:theme="@style/Theme.App.Global"
  109. android:usesCleartextTraffic="true" >
  110. <!-- 兼容支持 -->
  111. <uses-library
  112. android:name="org.apache.http.legacy"
  113. android:required="false" />
  114. <activity
  115. android:name="com.edufound.reader.ui.MainActivity"
  116. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  117. android:exported="true"
  118. android:theme="@style/Theme.Translucent" >
  119. <intent-filter>
  120. <action android:name="android.intent.action.MAIN" />
  121. <category android:name="android.intent.category.LAUNCHER" />
  122. <category android:name="android.intent.category.DEFAULT" />
  123. </intent-filter>
  124. <intent-filter>
  125. <action android:name="android.intent.action.VIEW" />
  126. <category android:name="android.intent.category.DEFAULT" />
  127. <category android:name="android.intent.category.BROWSABLE" />
  128. <data android:scheme="__placeholder__" />
  129. </intent-filter>
  130. </activity>
  131. <activity
  132. android:name="com.edufound.reader.wxapi.WXEntryActivity"
  133. android:exported="true"
  134. android:launchMode="singleTask" />
  135. <activity
  136. android:name="com.edufound.reader.wxapi.WXPayEntryActivity"
  137. android:exported="true"
  138. android:launchMode="singleTask" />
  139. <activity
  140. android:name="com.donut.plugin.activity.PermissionsActivity"
  141. android:exported="false"
  142. android:theme="@style/TransparentTheme" />
  143. <activity
  144. android:name="com.donut.plugin.activity.MainProcessActivity"
  145. android:exported="false"
  146. android:theme="@style/TransparentTheme" />
  147. <activity
  148. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0"
  149. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  150. android:process=":wxa_container0"
  151. android:screenOrientation="behind"
  152. android:theme="@style/WxaAppContainerTheme" />
  153. <activity-alias
  154. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity0"
  155. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0" />
  156. <activity
  157. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1"
  158. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  159. android:process=":wxa_container1"
  160. android:screenOrientation="behind"
  161. android:theme="@style/WxaAppContainerTheme" />
  162. <activity-alias
  163. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity1"
  164. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1" />
  165. <activity
  166. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2"
  167. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  168. android:process=":wxa_container2"
  169. android:screenOrientation="behind"
  170. android:theme="@style/WxaAppContainerTheme" />
  171. <activity-alias
  172. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity2"
  173. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2" />
  174. <activity
  175. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3"
  176. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  177. android:process=":wxa_container3"
  178. android:screenOrientation="behind"
  179. android:theme="@style/WxaAppContainerTheme" />
  180. <activity-alias
  181. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity3"
  182. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3" />
  183. <activity
  184. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4"
  185. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  186. android:process=":wxa_container4"
  187. android:screenOrientation="behind"
  188. android:theme="@style/WxaAppContainerTheme" />
  189. <activity-alias
  190. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity4"
  191. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4" />
  192. <meta-data
  193. android:name="com.tencent.wmpf.BuildInfo.BUILD_OWNER"
  194. android:value="coverguo" />
  195. <meta-data
  196. android:name="com.tencent.wmpf.BuildInfo.BUILD_HOSTNAME"
  197. android:value="null" />
  198. <meta-data
  199. android:name="com.tencent.wmpf.BuildInfo.BUILD_TIME"
  200. android:value="2023-12-15 16:17:46" />
  201. <meta-data
  202. android:name="com.tencent.wmpf.BuildInfo.BUILD_REV"
  203. android:value="fbd024f08109e12b34e54004e92373b11114cca0" />
  204. <meta-data
  205. android:name="com.tencent.wmpf.BuildInfo.BUILD_SDK_VERSION"
  206. android:value="2.1.0" />
  207. <meta-data
  208. android:name="com.tencent.wmpf.BuildInfo.BUILD_SDK_VERSION_INT"
  209. android:value="0x22010001" />
  210. <meta-data
  211. android:name="com.tencent.wmpf.BuildInfo.BUILD_UPSTREAM_CLIENT_VERSION"
  212. android:value="0x28000730" />
  213. <meta-data
  214. android:name="com.tencent.wmpf.BuildInfo.BUILD_WEBGL_MAP_COMP"
  215. android:value="false" />
  216. <meta-data
  217. android:name="com.tencent.wmpf.BuildInfo.BUILD_SUPPORT_GAME"
  218. android:value="false" />
  219. <meta-data
  220. android:name="com.tencent.wmpf.BuildInfo.BUILD_USE_MINIFIED_LITEAV_SDK"
  221. android:value="false" />
  222. <meta-data
  223. android:name="com.tencent.wmpf.BuildInfo.BUILD_PIPELINE_NUM"
  224. android:value="-1" />
  225. <activity
  226. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.WxaProfileActivity"
  227. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
  228. <activity
  229. android:name="com.tencent.luggage.wxaapi.internal.ui.WxaScanResultDelegateActivity"
  230. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
  231. <activity
  232. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerToFrontProxyActivity"
  233. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  234. android:screenOrientation="behind" />
  235. <service
  236. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCMainService"
  237. android:exported="false" />
  238. <service
  239. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService0"
  240. android:exported="false"
  241. android:process=":wxa_container0" />
  242. <service
  243. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService1"
  244. android:exported="false"
  245. android:process=":wxa_container1" />
  246. <service
  247. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService2"
  248. android:exported="false"
  249. android:process=":wxa_container2" />
  250. <service
  251. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService3"
  252. android:exported="false"
  253. android:process=":wxa_container3" />
  254. <service
  255. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService4"
  256. android:exported="false"
  257. android:process=":wxa_container4" />
  258. <activity
  259. android:name="com.tencent.mm.ui.AlertActivity"
  260. android:configChanges="keyboardHidden|orientation|screenSize"
  261. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  262. <provider
  263. android:name="com.luck.picture.lib.basic.PictureFileProvider"
  264. android:authorities="com.edufound.reader.luckProvider"
  265. android:exported="false"
  266. android:grantUriPermissions="true" >
  267. <meta-data
  268. android:name="android.support.FILE_PROVIDER_PATHS"
  269. android:resource="@xml/ps_file_paths" />
  270. </provider>
  271. <service
  272. android:name="com.luck.picture.lib.service.ForegroundService"
  273. android:enabled="true"
  274. android:foregroundServiceType="location" />
  275. <activity
  276. android:name="com.luck.picture.lib.basic.PictureSelectorSupporterActivity"
  277. android:configChanges="orientation|keyboardHidden|screenSize"
  278. android:multiprocess="true"
  279. android:theme="@style/Base.Theme.NoActionBar" />
  280. <activity
  281. android:name="com.luck.picture.lib.basic.PictureSelectorTransparentActivity"
  282. android:configChanges="orientation|keyboardHidden|screenSize"
  283. android:multiprocess="true"
  284. android:theme="@style/Picture.Theme.Translucent" />
  285. <meta-data
  286. android:name="use_xweb_camera"
  287. android:value="true" />
  288. <meta-data
  289. android:name="use_cpu_crop"
  290. android:value="false" />
  291. <service
  292. android:name="com.tencent.mm.plugin.appbrand.jsapi.nfc.hce.HCEService"
  293. android:exported="true"
  294. android:permission="android.permission.BIND_NFC_SERVICE" >
  295. <intent-filter>
  296. <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
  297. <category android:name="android.intent.category.DEFAULT" />
  298. </intent-filter>
  299. <meta-data
  300. android:name="android.nfc.cardemulation.host_apdu_service"
  301. android:resource="@xml/hce_apdu" />
  302. </service>
  303. <uses-library
  304. android:name="com.google.android.maps"
  305. android:required="false" />
  306. <uses-library
  307. android:name="com.here.android"
  308. android:required="false" />
  309. <meta-data
  310. android:name="TencentMapSDK"
  311. android:value="Q3PBZ-TDH3R-4XEWO-WJUMV-YBAUJ-MQBAS" />
  312. <meta-data
  313. android:name="TencentMapSubKey"
  314. android:value="E6FBZ-OLSCQ-UIU5C-GWLJ7-ABUPT-V7FJX" />
  315. <activity
  316. android:name="com.tencent.mm.plugin.appbrand.jsapi.lbs.LbsProxyActivity"
  317. android:configChanges="keyboardHidden|orientation|screenSize"
  318. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  319. <activity
  320. android:name="com.tencent.luggage.sdk.customize.impl.FullSdkExternalToolsHelper$SimpleWebViewActivity"
  321. android:launchMode="singleTask" />
  322. <provider
  323. android:name="com.tencent.luggage.storage.StandaloneCriticalDataProvider"
  324. android:authorities="com.edufound.reader.wxa_critical_content"
  325. android:exported="false" />
  326. <activity
  327. android:name="com.tencent.luggage.ui.OpenSDKBridgedActivity"
  328. android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
  329. android:theme="@android:style/Theme.Translucent.NoTitleBar" />
  330. <provider
  331. android:name="com.tencent.luggage.opensdk.OpenSDKApiContentProvider"
  332. android:authorities="com.edufound.reader.openapidata"
  333. android:exported="false"
  334. android:grantUriPermissions="true" >
  335. <meta-data
  336. android:name="android.support.FILE_PROVIDER_PATHS"
  337. android:resource="@xml/openapipath" />
  338. </provider>
  339. <activity
  340. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity"
  341. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
  342. <activity-alias
  343. android:name="com.tencent.luggage.ui.WxaSimpleWebViewActivity"
  344. android:enabled="true"
  345. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity" />
  346. <activity
  347. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity"
  348. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  349. <activity-alias
  350. android:name="com.tencent.luggage.setting.ui.WxaSettingActivity"
  351. android:enabled="true"
  352. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity" />
  353. <activity
  354. android:name="com.tencent.luggage.ui.WxaAlertActivity"
  355. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  356. android:theme="@style/Theme.LuggageApp.Standalone.WxaSetting.Dialog" />
  357. <activity android:name="com.tencent.luggage.ui.BlankActivity" />
  358. <activity
  359. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity"
  360. android:configChanges="keyboardHidden|orientation|screenSize"
  361. android:theme="@style/WeUITheme" />
  362. <activity-alias
  363. android:name="com.tencent.luggage.setting.ui.WmpfAuthorizeDetailUI"
  364. android:enabled="true"
  365. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity" />
  366. <activity
  367. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity"
  368. android:theme="@style/WeUITheme" />
  369. <activity-alias
  370. android:name="com.tencent.luggage.setting.ui.AppBrandUserInfoAuthorizeUI"
  371. android:enabled="true"
  372. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity" />
  373. <activity
  374. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity"
  375. android:theme="@style/wmpf_round_checkbox_WeUITheme" />
  376. <activity-alias
  377. android:name="com.tencent.luggage.setting.ui.BizSubscribeMsgManagerUI"
  378. android:enabled="true"
  379. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity" />
  380. <activity
  381. android:name="com.tencent.luggage.ui.WxaMusicActivity"
  382. android:theme="@style/WeUITheme" />
  383. <provider
  384. android:name="com.tencent.luggage.jsapi.file.LuggageOpenDocFileProvider"
  385. android:authorities="com.edufound.reader.shareFileProvide"
  386. android:exported="false"
  387. android:grantUriPermissions="true" >
  388. <meta-data
  389. android:name="android.support.FILE_PROVIDER_PATHS"
  390. android:resource="@xml/share_file_path" />
  391. </provider>
  392. <activity
  393. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity"
  394. android:screenOrientation="portrait"
  395. android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" />
  396. <activity-alias
  397. android:name="com.tencent.luggage.scanner.scanner.ui.BaseScanUI"
  398. android:enabled="true"
  399. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity" />
  400. <activity
  401. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity"
  402. android:theme="@style/WeUITheme.NoTitleTranslucent"
  403. android:windowSoftInputMode="adjustUnspecified|stateHidden" />
  404. <activity-alias
  405. android:name="com.tencent.luggage.ui.WxaLaunchProxyActivity"
  406. android:enabled="true"
  407. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity" />
  408. <activity
  409. android:name="com.tencent.luggage.ui.WxaPreviewImageUI"
  410. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  411. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  412. <service
  413. android:name="com.tencent.luggage.crash.WxaCrashUploaderService"
  414. android:exported="false" />
  415. <provider
  416. android:name="com.tencent.luggage.wxa.WxaFileExportContentProvider"
  417. android:authorities="com.edufound.reader.external.fileprovider"
  418. android:exported="false"
  419. android:grantUriPermissions="true" >
  420. <meta-data
  421. android:name="android.support.FILE_PROVIDER_PATHS"
  422. android:resource="@xml/file_paths" />
  423. </provider>
  424. <provider
  425. android:name="androidx.lifecycle.ProcessLifecycleOwnerInitializer"
  426. android:authorities="com.edufound.reader.lifecycle-process"
  427. android:exported="false"
  428. android:multiprocess="true" />
  429. </application>
  430. </manifest>