AndroidManifest.xml 43 KB

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