AndroidManifest.xml 43 KB

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