AndroidManifest.xml 43 KB

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