AndroidManifest.xml 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  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="1.0.2" >
  6. <uses-sdk
  7. xmlns:android="http://schemas.android.com/apk/res/android"
  8. android:minSdkVersion="21"
  9. android:targetSdkVersion="29" />
  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. <queries>
  21. <package android:name="com.tencent.mm" />
  22. <package android:name="com.lenovo.lsf" />
  23. <package android:name="com.lenovo.lsf.user" />
  24. </queries>
  25. <uses-permission
  26. xmlns:android="http://schemas.android.com/apk/res/android"
  27. android:name="android.permission.VIBRATE" />
  28. <uses-permission
  29. xmlns:android="http://schemas.android.com/apk/res/android"
  30. android:name="android.permission.ALARM_LOCK" />
  31. <uses-permission
  32. xmlns:android="http://schemas.android.com/apk/res/android"
  33. android:name="android.permission.WAKE_LOCK" />
  34. <uses-permission
  35. xmlns:android="http://schemas.android.com/apk/res/android"
  36. android:name="android.permission.ACCESS_WIFI_STATE" />
  37. <uses-permission
  38. xmlns:android="http://schemas.android.com/apk/res/android"
  39. android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  40. <permission
  41. xmlns:android="http://schemas.android.com/apk/res/android"
  42. android:name="com.edufound.reader.vfs.broadcast"
  43. android:protectionLevel="signature" />
  44. <uses-permission
  45. xmlns:android="http://schemas.android.com/apk/res/android"
  46. android:name="com.edufound.reader.vfs.broadcast" />
  47. <uses-permission
  48. xmlns:android="http://schemas.android.com/apk/res/android"
  49. android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
  50. <uses-permission
  51. xmlns:android="http://schemas.android.com/apk/res/android"
  52. android:name="android.permission.CAMERA"
  53. android:required="true" />
  54. <uses-feature
  55. xmlns:android="http://schemas.android.com/apk/res/android"
  56. android:name="android.hardware.camera"
  57. android:required="true" />
  58. <uses-feature
  59. xmlns:android="http://schemas.android.com/apk/res/android"
  60. android:name="android.hardware.camera.autofocus"
  61. android:required="true" />
  62. <uses-permission
  63. xmlns:android="http://schemas.android.com/apk/res/android"
  64. android:name="android.permission.CHANGE_NETWORK_STATE" />
  65. <uses-permission
  66. xmlns:android="http://schemas.android.com/apk/res/android"
  67. android:name="android.permission.CHANGE_WIFI_STATE" />
  68. <uses-permission
  69. xmlns:android="http://schemas.android.com/apk/res/android"
  70. android:name="android.permission.BLUETOOTH" />
  71. <uses-permission
  72. xmlns:android="http://schemas.android.com/apk/res/android"
  73. android:name="android.permission.BLUETOOTH_ADMIN" />
  74. <uses-permission
  75. xmlns:android="http://schemas.android.com/apk/res/android"
  76. android:name="android.permission.NFC" />
  77. <uses-permission
  78. xmlns:android="http://schemas.android.com/apk/res/android"
  79. android:name="android.permission.READ_EXTERNAL_STORAGE" />
  80. <permission
  81. xmlns:android="http://schemas.android.com/apk/res/android"
  82. android:name="com.edufound.reader.voiceassist.permission.READ"
  83. android:protectionLevel="normal" />
  84. <permission
  85. xmlns:android="http://schemas.android.com/apk/res/android"
  86. android:name="com.edufound.reader.voiceassist.permission.WRITE"
  87. android:protectionLevel="normal" />
  88. <uses-permission android:name="android.permission.FLASHLIGHT" />
  89. <uses-permission android:name="com.asus.msa.SupplementaryDID.ACCESS" />
  90. <uses-permission android:name="freemme.permission.msa" />
  91. <application
  92. xmlns:android="http://schemas.android.com/apk/res/android"
  93. android:name="com.edufound.reader.DemoApplication"
  94. android:allowBackup="false"
  95. android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  96. android:icon="@mipmap/ic_launcher"
  97. android:label="@string/app_name"
  98. android:persistent="true"
  99. android:requestLegacyExternalStorage="true"
  100. android:testOnly="true"
  101. android:theme="@style/Theme.App.Global"
  102. android:usesCleartextTraffic="true" >
  103. <!-- 兼容支持 -->
  104. <uses-library
  105. android:name="org.apache.http.legacy"
  106. android:required="false" />
  107. <activity
  108. android:name="com.edufound.reader.ui.MainActivity"
  109. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  110. android:exported="true"
  111. android:theme="@style/Theme.Translucent" >
  112. <intent-filter>
  113. <action android:name="android.intent.action.MAIN" />
  114. <category android:name="android.intent.category.LAUNCHER" />
  115. <category android:name="android.intent.category.DEFAULT" />
  116. </intent-filter>
  117. <intent-filter>
  118. <action android:name="android.intent.action.VIEW" />
  119. <category android:name="android.intent.category.DEFAULT" />
  120. <category android:name="android.intent.category.BROWSABLE" />
  121. <data android:scheme="__placeholder__" />
  122. </intent-filter>
  123. </activity>
  124. <activity
  125. android:name="com.edufound.reader.wxapi.WXEntryActivity"
  126. android:exported="true"
  127. android:launchMode="singleTask" />
  128. <activity
  129. android:name="com.edufound.reader.wxapi.WXPayEntryActivity"
  130. android:exported="true"
  131. android:launchMode="singleTask" />
  132. <activity
  133. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0"
  134. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  135. android:process=":wxa_container0"
  136. android:screenOrientation="behind"
  137. android:theme="@style/WxaAppContainerTheme" />
  138. <activity-alias
  139. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity0"
  140. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0" />
  141. <activity
  142. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1"
  143. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  144. android:process=":wxa_container1"
  145. android:screenOrientation="behind"
  146. android:theme="@style/WxaAppContainerTheme" />
  147. <activity-alias
  148. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity1"
  149. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1" />
  150. <activity
  151. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2"
  152. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  153. android:process=":wxa_container2"
  154. android:screenOrientation="behind"
  155. android:theme="@style/WxaAppContainerTheme" />
  156. <activity-alias
  157. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity2"
  158. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2" />
  159. <activity
  160. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3"
  161. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  162. android:process=":wxa_container3"
  163. android:screenOrientation="behind"
  164. android:theme="@style/WxaAppContainerTheme" />
  165. <activity-alias
  166. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity3"
  167. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3" />
  168. <activity
  169. android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4"
  170. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  171. android:process=":wxa_container4"
  172. android:screenOrientation="behind"
  173. android:theme="@style/WxaAppContainerTheme" />
  174. <activity-alias
  175. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity4"
  176. android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4" />
  177. <meta-data
  178. android:name="com.tencent.wmpf.BuildInfo.BUILD_OWNER"
  179. android:value="coverguo" />
  180. <meta-data
  181. android:name="com.tencent.wmpf.BuildInfo.BUILD_HOSTNAME"
  182. android:value="null" />
  183. <meta-data
  184. android:name="com.tencent.wmpf.BuildInfo.BUILD_TIME"
  185. android:value="2023-10-08 14:48:58" />
  186. <meta-data
  187. android:name="com.tencent.wmpf.BuildInfo.BUILD_REV"
  188. android:value="dd1a72aa183f6ae15c394a1530c3e85a52b9faa0" />
  189. <meta-data
  190. android:name="com.tencent.wmpf.BuildInfo.BUILD_SDK_VERSION"
  191. android:value="2.1.0" />
  192. <meta-data
  193. android:name="com.tencent.wmpf.BuildInfo.BUILD_SDK_VERSION_INT"
  194. android:value="0x22010001" />
  195. <meta-data
  196. android:name="com.tencent.wmpf.BuildInfo.BUILD_UPSTREAM_CLIENT_VERSION"
  197. android:value="0x28000730" />
  198. <meta-data
  199. android:name="com.tencent.wmpf.BuildInfo.BUILD_WEBGL_MAP_COMP"
  200. android:value="false" />
  201. <meta-data
  202. android:name="com.tencent.wmpf.BuildInfo.BUILD_SUPPORT_GAME"
  203. android:value="false" />
  204. <meta-data
  205. android:name="com.tencent.wmpf.BuildInfo.BUILD_USE_MINIFIED_LITEAV_SDK"
  206. android:value="false" />
  207. <meta-data
  208. android:name="com.tencent.wmpf.BuildInfo.BUILD_PIPELINE_NUM"
  209. android:value="-1" />
  210. <activity
  211. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.WxaProfileActivity"
  212. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
  213. <activity
  214. android:name="com.tencent.luggage.wxaapi.internal.ui.WxaScanResultDelegateActivity"
  215. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
  216. <activity
  217. android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerToFrontProxyActivity"
  218. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  219. android:screenOrientation="behind" />
  220. <service
  221. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCMainService"
  222. android:exported="false" />
  223. <service
  224. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService0"
  225. android:exported="false"
  226. android:process=":wxa_container0" />
  227. <service
  228. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService1"
  229. android:exported="false"
  230. android:process=":wxa_container1" />
  231. <service
  232. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService2"
  233. android:exported="false"
  234. android:process=":wxa_container2" />
  235. <service
  236. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService3"
  237. android:exported="false"
  238. android:process=":wxa_container3" />
  239. <service
  240. android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService4"
  241. android:exported="false"
  242. android:process=":wxa_container4" />
  243. <activity
  244. android:name="com.tencent.mm.ui.AlertActivity"
  245. android:configChanges="keyboardHidden|orientation|screenSize"
  246. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  247. <provider
  248. android:name="com.luck.picture.lib.basic.PictureFileProvider"
  249. android:authorities="com.edufound.reader.luckProvider"
  250. android:exported="false"
  251. android:grantUriPermissions="true" >
  252. <meta-data
  253. android:name="android.support.FILE_PROVIDER_PATHS"
  254. android:resource="@xml/ps_file_paths" />
  255. </provider>
  256. <service
  257. android:name="com.luck.picture.lib.service.ForegroundService"
  258. android:enabled="true"
  259. android:foregroundServiceType="location" />
  260. <activity
  261. android:name="com.luck.picture.lib.basic.PictureSelectorSupporterActivity"
  262. android:configChanges="orientation|keyboardHidden|screenSize"
  263. android:multiprocess="true"
  264. android:theme="@style/Base.Theme.NoActionBar" />
  265. <activity
  266. android:name="com.luck.picture.lib.basic.PictureSelectorTransparentActivity"
  267. android:configChanges="orientation|keyboardHidden|screenSize"
  268. android:multiprocess="true"
  269. android:theme="@style/Picture.Theme.Translucent" />
  270. <meta-data
  271. android:name="use_xweb_camera"
  272. android:value="true" />
  273. <meta-data
  274. android:name="use_cpu_crop"
  275. android:value="false" />
  276. <service
  277. android:name="com.tencent.mm.plugin.appbrand.jsapi.nfc.hce.HCEService"
  278. android:exported="true"
  279. android:permission="android.permission.BIND_NFC_SERVICE" >
  280. <intent-filter>
  281. <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
  282. <category android:name="android.intent.category.DEFAULT" />
  283. </intent-filter>
  284. <meta-data
  285. android:name="android.nfc.cardemulation.host_apdu_service"
  286. android:resource="@xml/hce_apdu" />
  287. </service>
  288. <uses-library
  289. android:name="com.google.android.maps"
  290. android:required="false" />
  291. <uses-library
  292. android:name="com.here.android"
  293. android:required="false" />
  294. <meta-data
  295. android:name="TencentMapSDK"
  296. android:value="Q3PBZ-TDH3R-4XEWO-WJUMV-YBAUJ-MQBAS" />
  297. <meta-data
  298. android:name="TencentMapSubKey"
  299. android:value="E6FBZ-OLSCQ-UIU5C-GWLJ7-ABUPT-V7FJX" />
  300. <activity
  301. android:name="com.tencent.mm.plugin.appbrand.jsapi.lbs.LbsProxyActivity"
  302. android:configChanges="keyboardHidden|orientation|screenSize"
  303. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  304. <activity
  305. android:name="com.tencent.luggage.sdk.customize.impl.FullSdkExternalToolsHelper$SimpleWebViewActivity"
  306. android:launchMode="singleTask" />
  307. <provider
  308. android:name="com.tencent.luggage.storage.StandaloneCriticalDataProvider"
  309. android:authorities="com.edufound.reader.wxa_critical_content"
  310. android:exported="false" />
  311. <activity
  312. android:name="com.tencent.luggage.ui.OpenSDKBridgedActivity"
  313. android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
  314. android:theme="@android:style/Theme.Translucent.NoTitleBar" />
  315. <provider
  316. android:name="com.tencent.luggage.opensdk.OpenSDKApiContentProvider"
  317. android:authorities="com.edufound.reader.openapidata"
  318. android:exported="false"
  319. android:grantUriPermissions="true" >
  320. <meta-data
  321. android:name="android.support.FILE_PROVIDER_PATHS"
  322. android:resource="@xml/openapipath" />
  323. </provider>
  324. <activity
  325. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity"
  326. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
  327. <activity-alias
  328. android:name="com.tencent.luggage.ui.WxaSimpleWebViewActivity"
  329. android:enabled="true"
  330. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity" />
  331. <activity
  332. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity"
  333. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  334. <activity-alias
  335. android:name="com.tencent.luggage.setting.ui.WxaSettingActivity"
  336. android:enabled="true"
  337. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity" />
  338. <activity
  339. android:name="com.tencent.luggage.ui.WxaAlertActivity"
  340. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  341. android:theme="@style/Theme.LuggageApp.Standalone.WxaSetting.Dialog" />
  342. <activity android:name="com.tencent.luggage.ui.BlankActivity" />
  343. <activity
  344. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity"
  345. android:configChanges="keyboardHidden|orientation|screenSize"
  346. android:theme="@style/WeUITheme" />
  347. <activity-alias
  348. android:name="com.tencent.luggage.setting.ui.WmpfAuthorizeDetailUI"
  349. android:enabled="true"
  350. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity" />
  351. <activity
  352. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity"
  353. android:theme="@style/WeUITheme" />
  354. <activity-alias
  355. android:name="com.tencent.luggage.setting.ui.AppBrandUserInfoAuthorizeUI"
  356. android:enabled="true"
  357. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity" />
  358. <activity
  359. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity"
  360. android:theme="@style/wmpf_round_checkbox_WeUITheme" />
  361. <activity-alias
  362. android:name="com.tencent.luggage.setting.ui.BizSubscribeMsgManagerUI"
  363. android:enabled="true"
  364. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity" />
  365. <activity
  366. android:name="com.tencent.luggage.ui.WxaMusicActivity"
  367. android:theme="@style/WeUITheme" />
  368. <provider
  369. android:name="com.tencent.luggage.jsapi.file.LuggageOpenDocFileProvider"
  370. android:authorities="com.edufound.reader.shareFileProvide"
  371. android:exported="false"
  372. android:grantUriPermissions="true" >
  373. <meta-data
  374. android:name="android.support.FILE_PROVIDER_PATHS"
  375. android:resource="@xml/share_file_path" />
  376. </provider>
  377. <activity
  378. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity"
  379. android:screenOrientation="portrait"
  380. android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" />
  381. <activity-alias
  382. android:name="com.tencent.luggage.scanner.scanner.ui.BaseScanUI"
  383. android:enabled="true"
  384. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity" />
  385. <activity
  386. android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity"
  387. android:theme="@style/WeUITheme.NoTitleTranslucent"
  388. android:windowSoftInputMode="adjustUnspecified|stateHidden" />
  389. <activity-alias
  390. android:name="com.tencent.luggage.ui.WxaLaunchProxyActivity"
  391. android:enabled="true"
  392. android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity" />
  393. <activity
  394. android:name="com.tencent.luggage.ui.WxaPreviewImageUI"
  395. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
  396. android:theme="@style/WeUITheme.NoTitleTranslucent" />
  397. <service
  398. android:name="com.tencent.luggage.crash.WxaCrashUploaderService"
  399. android:exported="false" />
  400. <provider
  401. android:name="com.tencent.luggage.wxa.WxaFileExportContentProvider"
  402. android:authorities="com.edufound.reader.external.fileprovider"
  403. android:exported="false"
  404. android:grantUriPermissions="true" >
  405. <meta-data
  406. android:name="android.support.FILE_PROVIDER_PATHS"
  407. android:resource="@xml/file_paths" />
  408. </provider>
  409. <activity
  410. android:name="com.donut.plugin.activity.LoginActivity"
  411. android:exported="false" />
  412. <activity
  413. android:name="com.donut.plugin.activity.AliPayActivity"
  414. android:exported="false" />
  415. <activity
  416. android:name="com.lenovo.intermodal.ui.PayActionActivity"
  417. android:configChanges="keyboardHidden|orientation|screenSize|navigation|locale|layoutDirection"
  418. android:exported="false"
  419. android:launchMode="singleTask"
  420. android:screenOrientation="portrait" />
  421. <activity
  422. android:name="com.alipay.sdk.app.H5PayActivity"
  423. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  424. android:exported="false"
  425. android:screenOrientation="behind"
  426. android:windowSoftInputMode="adjustResize|stateHidden" />
  427. <activity
  428. android:name="com.alipay.sdk.app.H5AuthActivity"
  429. android:configChanges="orientation|keyboardHidden|navigation"
  430. android:exported="false"
  431. android:screenOrientation="behind"
  432. android:windowSoftInputMode="adjustResize|stateHidden" />
  433. <meta-data
  434. android:name="lenovo:applicationToken"
  435. android:value="E9EEWZU78683" /> <!-- android:theme="@style/com_lenovo_lsf_ui.no_title" -->
  436. <activity
  437. android:name="com.lenovo.lsf.lenovoid.ui.PsLoginCommonActivity"
  438. android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  439. android:exported="false"
  440. android:theme="@style/com_lenovo_lsf_ui.no_title"
  441. android:windowSoftInputMode="adjustPan|stateVisible" >
  442. <intent-filter>
  443. <action android:name="com.lenovo.lsf.id.action.EMAIL_LOGIN" />
  444. <action android:name="com.lenovo.lsf.id.action.PHONENUMBER_LOGIN" />
  445. <category android:name="android.intent.category.DEFAULT" />
  446. </intent-filter>
  447. </activity>
  448. <activity
  449. android:name="com.lenovo.lsf.lenovoid.ui.PsLoginActivity"
  450. android:configChanges="keyboard|keyboardHidden"
  451. android:excludeFromRecents="true"
  452. android:exported="false"
  453. android:launchMode="singleTask"
  454. android:theme="@style/com_lenovo_lsf_ui.no_title"
  455. android:windowSoftInputMode="stateAlwaysHidden|adjustPan" >
  456. </activity>
  457. <activity
  458. android:name="com.lenovo.lsf.lenovoid.ui.PsLoginPhoneCodeActivity"
  459. android:configChanges="orientation|keyboardHidden|screenSize"
  460. android:exported="false"
  461. android:theme="@style/com_lenovo_lsf_ui.no_title"
  462. android:windowSoftInputMode="stateAlwaysHidden|adjustPan" >
  463. <intent-filter>
  464. <action android:name="com.lenovo.lsf.id.action.PHONENUMBER_AUTHENCODE_LOGIN" />
  465. <category android:name="android.intent.category.DEFAULT" />
  466. </intent-filter>
  467. </activity>
  468. <activity
  469. android:name="com.lenovo.lsf.account.PsUserSettingActivity"
  470. android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  471. android:exported="false"
  472. android:theme="@style/com_lenovo_lsf_ui.no_title" >
  473. </activity>
  474. <activity
  475. android:name="com.lenovo.lsf.lenovoid.ui.AccountBindingActivity"
  476. android:configChanges="orientation|keyboardHidden|screenSize"
  477. android:exported="false"
  478. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  479. <activity
  480. android:name="com.lenovo.lsf.lenovoid.ui.PreAccountBindingActivity"
  481. android:configChanges="orientation|keyboardHidden|screenSize"
  482. android:exported="false"
  483. android:theme="@style/com_lenovo_lsf_ui.no_title"
  484. android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
  485. <activity
  486. android:name="com.lenovo.lsf.lenovoid.ui.AccountBindingRegistActivity"
  487. android:configChanges="orientation|keyboardHidden|screenSize"
  488. android:exported="false"
  489. android:theme="@style/com_lenovo_lsf_ui.no_title"
  490. android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
  491. <activity
  492. android:name="com.lenovo.lsf.lenovoid.ui.AccountBindingRegistFinalActivity"
  493. android:configChanges="orientation|keyboardHidden|screenSize"
  494. android:exported="false"
  495. android:theme="@style/com_lenovo_lsf_ui.no_title"
  496. android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
  497. <activity
  498. android:name="com.lenovo.lsf.lenovoid.ui.IncludeAreaCodeActivity"
  499. android:configChanges="orientation|keyboardHidden|screenSize"
  500. android:exported="false"
  501. android:theme="@style/com_lenovo_lsf_ui.no_title"
  502. android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
  503. <activity
  504. android:name="com.lenovo.lsf.lenovoid.ui.AccountInfoActivity"
  505. android:exported="false"
  506. android:launchMode="singleTop"
  507. android:theme="@style/com_lenovo_lsf_ui.no_title" >
  508. <intent-filter>
  509. <action android:name="com.lenovo.lsf.lenovoid.action.MYACCOUNT" />
  510. <category android:name="android.intent.category.DEFAULT" />
  511. </intent-filter>
  512. </activity>
  513. <activity
  514. android:name="com.lenovo.lsf.lenovoid.ui.ChangePasswordFirstActivity"
  515. android:configChanges="orientation|keyboardHidden|screenSize"
  516. android:exported="false"
  517. android:theme="@style/com_lenovo_lsf_ui.no_title"
  518. android:windowSoftInputMode="stateVisible" >
  519. <intent-filter>
  520. <action android:name="com.lenovo.lsf.lenovoid.action.CHANGEPASSWORD" />
  521. <category android:name="android.intent.category.DEFAULT" />
  522. </intent-filter>
  523. </activity>
  524. <activity
  525. android:name="com.lenovo.lsf.lenovoid.ui.ChangePasswordCompleteActivity"
  526. android:configChanges="orientation|keyboardHidden|screenSize"
  527. android:exported="false"
  528. android:theme="@style/com_lenovo_lsf_ui.no_title"
  529. android:windowSoftInputMode="stateVisible" />
  530. <activity
  531. android:name="com.lenovo.lsf.lenovoid.ui.FindPasswordActivity"
  532. android:configChanges="orientation|keyboardHidden|screenSize"
  533. android:exported="false"
  534. android:theme="@style/com_lenovo_lsf_ui.no_title"
  535. android:windowSoftInputMode="adjustPan|stateVisible" />
  536. <activity
  537. android:name="com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivity"
  538. android:configChanges="orientation|keyboardHidden|screenSize"
  539. android:exported="false"
  540. android:theme="@style/com_lenovo_lsf_ui.no_title"
  541. android:windowSoftInputMode="adjustPan|stateVisible" >
  542. <intent-filter>
  543. <action android:name="com.lenovo.lsf.id.action.REGISTER" />
  544. <category android:name="android.intent.category.DEFAULT" />
  545. </intent-filter>
  546. </activity>
  547. <activity
  548. android:name="com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivitySecondStep"
  549. android:configChanges="orientation|keyboardHidden|screenSize"
  550. android:exported="false"
  551. android:theme="@style/com_lenovo_lsf_ui.no_title"
  552. android:windowSoftInputMode="adjustPan|stateVisible" />
  553. <activity
  554. android:name="com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivityThirdStep"
  555. android:configChanges="orientation|keyboardHidden|screenSize"
  556. android:exported="false"
  557. android:theme="@style/com_lenovo_lsf_ui.no_title"
  558. android:windowSoftInputMode="adjustPan|stateVisible" />
  559. <activity
  560. android:name="com.lenovo.lsf.lenovoid.ui.ServiceProtocolActivity"
  561. android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  562. android:exported="false"
  563. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  564. <activity
  565. android:name="com.lenovo.lsf.lenovoid.ui.RegistByEmailActivity"
  566. android:configChanges="orientation|keyboardHidden|screenSize"
  567. android:exported="false"
  568. android:theme="@style/com_lenovo_lsf_ui.no_title"
  569. android:windowSoftInputMode="adjustPan|stateVisible" />
  570. <activity
  571. android:name="com.lenovo.lsf.lenovoid.ui.MyselfInformationActivity"
  572. android:configChanges="orientation|keyboardHidden|screenSize"
  573. android:exported="false"
  574. android:theme="@style/com_lenovo_lsf_ui.no_title" >
  575. <intent-filter>
  576. <action android:name="com.lenovo.lsf.id.action.MY_ACCOUNT_INFO" />
  577. <category android:name="android.intent.category.DEFAULT" />
  578. </intent-filter>
  579. </activity>
  580. <activity
  581. android:name="com.lenovo.lsf.lenovoid.ui.PwdGuideActivity"
  582. android:configChanges="orientation|keyboardHidden|screenSize"
  583. android:exported="false"
  584. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  585. <activity
  586. android:name="com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepSecond"
  587. android:configChanges="orientation|keyboardHidden|screenSize"
  588. android:exported="false"
  589. android:theme="@style/com_lenovo_lsf_ui.no_title"
  590. android:windowSoftInputMode="stateVisible" />
  591. <activity
  592. android:name="com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepThird"
  593. android:configChanges="orientation|keyboardHidden|screenSize"
  594. android:exported="false"
  595. android:theme="@style/com_lenovo_lsf_ui.no_title"
  596. android:windowSoftInputMode="stateVisible" />
  597. <activity
  598. android:name="com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepForth"
  599. android:configChanges="orientation|keyboardHidden|screenSize"
  600. android:exported="false"
  601. android:theme="@style/com_lenovo_lsf_ui.no_title"
  602. android:windowSoftInputMode="stateVisible" />
  603. <activity
  604. android:name="com.lenovo.lsf.lenovoid.ui.SetSafemailOrBindPhoneNumConfirmActivity"
  605. android:configChanges="orientation|keyboardHidden|screenSize"
  606. android:exported="false"
  607. android:theme="@style/com_lenovo_lsf_ui.no_title"
  608. android:windowSoftInputMode="stateVisible" />
  609. <activity
  610. android:name="com.lenovo.lsf.lenovoid.ui.SetSafemailOrBindPhoneNumActivity"
  611. android:configChanges="orientation|keyboardHidden|screenSize"
  612. android:exported="false"
  613. android:theme="@style/com_lenovo_lsf_ui.no_title" >
  614. <intent-filter>
  615. <!-- 该action可以提供给三方应用 用以调出激活界面 -->
  616. <action android:name="com.lenovo.lsf.bindaccount" />
  617. </intent-filter>
  618. </activity>
  619. <activity
  620. android:name="com.lenovo.lsf.lenovoid.ui.FindPasswordConfirmActivity"
  621. android:configChanges="orientation|keyboardHidden|screenSize"
  622. android:exported="false"
  623. android:theme="@style/com_lenovo_lsf_ui.no_title"
  624. android:windowSoftInputMode="adjustPan|stateVisible" />
  625. <activity
  626. android:name="com.lenovo.lsf.lenovoid.ui.FindPasswordFinalActivity"
  627. android:configChanges="orientation|keyboardHidden|screenSize"
  628. android:exported="false"
  629. android:theme="@style/com_lenovo_lsf_ui.no_title"
  630. android:windowSoftInputMode="adjustPan|stateVisible" /> <!-- 账号激活 -->
  631. <activity
  632. android:name="com.lenovo.lsf.lenovoid.ui.ActivationbyPhoneActivity"
  633. android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  634. android:exported="false"
  635. android:theme="@style/com_lenovo_lsf_theme_dialog"
  636. android:windowSoftInputMode="stateVisible" >
  637. <intent-filter>
  638. <!-- 该action可以提供给三方应用 用以调出激活界面 -->
  639. <action android:name="com.lenovo.lsf.activation.phone" />
  640. </intent-filter>
  641. </activity>
  642. <activity
  643. android:name="com.lenovo.lsf.lenovoid.ui.ActivationbyMailActivity"
  644. android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  645. android:exported="false"
  646. android:theme="@style/com_lenovo_lsf_theme_dialog"
  647. android:windowSoftInputMode="stateHidden" >
  648. <intent-filter>
  649. <!-- 该action可以提供给三方应用 用以调出激活界面 -->
  650. <action android:name="com.lenovo.lsf.activation.mail" />
  651. </intent-filter>
  652. </activity> <!-- 实名认证 -->
  653. <activity
  654. android:name="com.lenovo.lsf.lenovoid.ui.RealnameAuthActivity"
  655. android:configChanges="orientation|keyboardHidden|screenSize"
  656. android:exported="false"
  657. android:theme="@style/com_lenovo_lsf_ui.no_title"
  658. android:windowSoftInputMode="stateVisible|adjustPan" >
  659. </activity>
  660. <activity
  661. android:name="com.lenovo.lsf.lenovoid.ui.RealnameAuthSecondActivity"
  662. android:configChanges="orientation|keyboardHidden|screenSize"
  663. android:exported="false"
  664. android:theme="@style/com_lenovo_lsf_ui.no_title"
  665. android:windowSoftInputMode="stateVisible|adjustPan" >
  666. </activity>
  667. <activity
  668. android:name="com.lenovo.lsf.lenovoid.ui.IdAuthActivty"
  669. android:configChanges="orientation|keyboardHidden|screenSize"
  670. android:exported="false"
  671. android:theme="@style/com_lenovo_lsf_ui.no_title" >
  672. </activity>
  673. <activity
  674. android:name="com.lenovo.lsf.lenovoid.ui.IdAuthActivtySecond"
  675. android:configChanges="orientation|keyboardHidden|screenSize"
  676. android:exported="false"
  677. android:theme="@style/com_lenovo_lsf_ui.no_title" >
  678. </activity>
  679. <activity
  680. android:name="com.lenovo.lsf.lenovoid.ui.AccountH5InfoActivity"
  681. android:configChanges="orientation|keyboardHidden|screenSize"
  682. android:exported="false"
  683. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  684. <activity
  685. android:name="com.lenovo.lsf.lenovoid.ui.CountryCodeH5Activity"
  686. android:configChanges="orientation|keyboardHidden|screenSize"
  687. android:exported="false"
  688. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  689. <activity
  690. android:name="com.lenovo.lsf.lenovoid.ui.SafeQuestionActivity"
  691. android:configChanges="orientation|keyboardHidden|screenSize"
  692. android:exported="false"
  693. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  694. <activity
  695. android:name="com.lenovo.lsf.lenovoid.ui.EmailRegistedDoneActivity"
  696. android:configChanges="orientation|keyboardHidden|screenSize"
  697. android:exported="false"
  698. android:theme="@style/com_lenovo_lsf_ui.no_title" />
  699. <activity
  700. android:name="com.lenovo.lsf.account.qrcode.ui.CaptureActivity"
  701. android:exported="false"
  702. android:permission="com.lenovo.lsf.permission.IDSERVICE"
  703. android:screenOrientation="portrait"
  704. android:theme="@style/com_lenovo_lsf_ui" >
  705. <intent-filter>
  706. <action android:name="com.lenovo.lsf.account.QRCODE" />
  707. <category android:name="android.intent.category.DEFAULT" />
  708. </intent-filter>
  709. </activity>
  710. <activity
  711. android:name="com.lenovo.lsf.account.qrcode.ui.WebLoginConfirmActivity"
  712. android:configChanges="keyboardHidden"
  713. android:exported="false"
  714. android:screenOrientation="portrait"
  715. android:theme="@style/com_lenovo_lsf_ui" >
  716. </activity>
  717. <activity
  718. android:name="com.lenovo.lsf.lenovoid.ui.RegistByEmailSecondActivity"
  719. android:configChanges="orientation|keyboardHidden|screenSize"
  720. android:exported="false"
  721. android:theme="@style/com_lenovo_lsf_ui.no_title"
  722. android:windowSoftInputMode="stateVisible|adjustPan" >
  723. </activity>
  724. <activity
  725. android:name="com.lenovo.lsf.lenovoid.ui.RegistByEmailThirdActivity"
  726. android:configChanges="orientation|keyboardHidden|screenSize"
  727. android:exported="false"
  728. android:theme="@style/com_lenovo_lsf_ui.no_title"
  729. android:windowSoftInputMode="stateVisible|adjustPan" >
  730. </activity>
  731. <provider
  732. android:name="androidx.lifecycle.ProcessLifecycleOwnerInitializer"
  733. android:authorities="com.edufound.reader.lifecycle-process"
  734. android:exported="false"
  735. android:multiprocess="true" />
  736. </application>
  737. </manifest>