AndroidManifest.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.cooleshow.teacher">
  5. <permission
  6. android:name="${applicationId}.permission.JPUSH_MESSAGE"
  7. android:protectionLevel="signature" />
  8. <uses-permission android:name="${applicationId}.permission.JPUSH_MESSAGE" />
  9. <permission
  10. android:name="${applicationId}.permission.MIPUSH_RECEIVE"
  11. android:protectionLevel="signature" />
  12. <uses-permission
  13. android:name="com.huawei.android.launcher.permission.CHANGE_BADGE"/>
  14. <uses-permission android:name="android.permission.INTERNET" />
  15. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  16. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
  17. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  18. <uses-permission android:name="android.permission.CAMERA" />
  19. <uses-permission android:name="android.permission.RECORD_AUDIO" />
  20. <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
  21. <queries>
  22. <package android:name="com.tencent.mm" /> <!-- // 指定微信包名 -->
  23. <package android:name="com.tencent.mobileqq" /> <!-- //指定qq包名 -->
  24. <package android:name="com.sina.weibo" /> <!-- //指定微博包名 -->
  25. <package android:name="com.qzone" /> <!-- //指定QQ空间包名 -->
  26. </queries>
  27. <application
  28. android:name=".App"
  29. android:allowBackup="true"
  30. android:icon="@mipmap/ic_launcher"
  31. android:label="@string/app_name"
  32. android:networkSecurityConfig="@xml/network_security_config"
  33. android:requestLegacyExternalStorage="true"
  34. android:supportsRtl="true"
  35. android:theme="@style/AppTheme">
  36. <meta-data
  37. android:name="design_width_in_dp"
  38. android:value="375" />
  39. <activity
  40. android:name=".ui.mine.UnBindBankCardActivity"
  41. android:exported="false" />
  42. <activity
  43. android:name=".ui.splash.SplashActivity"
  44. android:exported="true"
  45. android:screenOrientation="portrait"
  46. android:theme="@style/SplashTheme">
  47. <intent-filter>
  48. <action android:name="android.intent.action.MAIN" />
  49. <category android:name="android.intent.category.LAUNCHER" />
  50. </intent-filter>
  51. <intent-filter>
  52. <action android:name="android.intent.action.VIEW" />
  53. <category android:name="android.intent.category.DEFAULT" />
  54. <category android:name="android.intent.category.BROWSABLE" />
  55. <data
  56. android:host="html"
  57. android:path="/SplashActivity"
  58. android:port="8888"
  59. android:scheme="colexiuteacher" />
  60. </intent-filter>
  61. </activity>
  62. <activity
  63. android:name=".ui.main.MainActivity"
  64. android:configChanges="orientation|screenSize|keyboardHidden"
  65. android:exported="true"
  66. android:launchMode="singleTask"
  67. android:screenOrientation="portrait"
  68. android:windowSoftInputMode="adjustPan">
  69. <intent-filter>
  70. <!-- 这个action是给极光推送跳转的 oppo推送要求push的intent-filter应与其他功能的intent-filter区分开,勿添加其他action与data标签-->
  71. <action android:name="cn.jiguang.push.customAction" />
  72. <category android:name="android.intent.category.DEFAULT" />
  73. </intent-filter>
  74. <intent-filter>
  75. <!-- 这个action是给融云推送跳转的,比如华为的离线消息点击-->
  76. <action android:name="android.intent.action.VIEW" />
  77. <category android:name="android.intent.category.DEFAULT" />
  78. <data
  79. android:host="${applicationId}"
  80. android:pathPrefix="/conversationlist"
  81. android:scheme="rong" />
  82. </intent-filter>
  83. <intent-filter>
  84. <!-- 这个action是给融云推送跳转的,比如小米手机等消息点击-->
  85. <action android:name="android.intent.action.VIEW" />
  86. <category android:name="android.intent.category.DEFAULT" />
  87. <data
  88. android:host="${applicationId}"
  89. android:pathPrefix="/conversation/"
  90. android:scheme="rong" />
  91. </intent-filter>
  92. </activity>
  93. <activity
  94. android:name=".ui.splash.GuideActivity"
  95. android:configChanges="orientation|screenSize|keyboardHidden"
  96. android:screenOrientation="portrait" />
  97. <activity
  98. android:name=".ui.course.MineCourseActivity"
  99. android:configChanges="orientation|screenSize|keyboardHidden"
  100. android:screenOrientation="portrait" />
  101. <activity
  102. android:name=".ui.web.WebActivity"
  103. android:configChanges="orientation|screenSize|keyboardHidden"
  104. android:screenOrientation="portrait" />
  105. <activity
  106. android:name=".ui.web.HtmlActivity"
  107. android:configChanges="orientation|screenSize|keyboardHidden"
  108. android:screenOrientation="portrait"
  109. android:windowSoftInputMode="adjustResize" />
  110. <activity
  111. android:name=".ui.web.HtmlHorizontalScreenActivity"
  112. android:configChanges="orientation|screenSize|keyboardHidden"
  113. android:screenOrientation="landscape" />
  114. <activity
  115. android:name=".ui.web.AccompanyActivity"
  116. android:configChanges="orientation|screenSize|keyboardHidden"
  117. android:screenOrientation="portrait" />
  118. <activity
  119. android:name=".ui.course.SparringCourseDetailActivity"
  120. android:configChanges="orientation|screenSize|keyboardHidden"
  121. android:screenOrientation="portrait"
  122. android:windowSoftInputMode="adjustNothing" />
  123. <activity
  124. android:name=".ui.course.PianoRoomCourseDetailActivity"
  125. android:configChanges="orientation|screenSize|keyboardHidden"
  126. android:screenOrientation="portrait"
  127. android:windowSoftInputMode="adjustNothing" />
  128. <activity
  129. android:name=".ui.course.PianoRoomCourseHomeWorkActivity"
  130. android:configChanges="orientation|screenSize|keyboardHidden"
  131. android:screenOrientation="portrait" />
  132. <activity
  133. android:name=".ui.comment.ReceivedCommentActivity"
  134. android:configChanges="orientation|screenSize|keyboardHidden"
  135. android:screenOrientation="portrait"
  136. android:windowSoftInputMode="adjustPan" />
  137. <activity
  138. android:name=".ui.comment.CourseCommentActivity"
  139. android:configChanges="orientation|screenSize|keyboardHidden"
  140. android:screenOrientation="portrait"
  141. android:windowSoftInputMode="adjustPan" />
  142. <activity
  143. android:name=".ui.comment.CourseCommentDetailActivity"
  144. android:configChanges="orientation|screenSize|keyboardHidden"
  145. android:screenOrientation="portrait" />
  146. <activity
  147. android:name=".ui.homepage.HomePageActivity"
  148. android:configChanges="orientation|screenSize|keyboardHidden"
  149. android:screenOrientation="portrait"
  150. android:windowSoftInputMode="adjustPan" />
  151. <activity
  152. android:name=".ui.minestyle.MineStylePageActivity"
  153. android:configChanges="orientation|screenSize|keyboardHidden"
  154. android:screenOrientation="portrait" />
  155. <activity
  156. android:name=".ui.minestyle.TeachableInstrumentActivity"
  157. android:screenOrientation="portrait" />
  158. <activity
  159. android:name=".ui.mine.PersonalSettingActivity"
  160. android:configChanges="orientation|screenSize|keyboardHidden"
  161. android:screenOrientation="portrait" />
  162. <activity
  163. android:name=".ui.mine.SettingActivity"
  164. android:configChanges="orientation|screenSize|keyboardHidden"
  165. android:screenOrientation="portrait" />
  166. <activity
  167. android:name=".ui.mine.ModifyNickNameActivity"
  168. android:configChanges="orientation|screenSize|keyboardHidden"
  169. android:screenOrientation="portrait" />
  170. <activity
  171. android:name=".ui.mine.CheckModifyPhoneNumActivity"
  172. android:configChanges="orientation|screenSize|keyboardHidden"
  173. android:screenOrientation="portrait" />
  174. <activity
  175. android:name=".ui.mine.ModifyPhoneNumActivity"
  176. android:configChanges="orientation|screenSize|keyboardHidden"
  177. android:screenOrientation="portrait" />
  178. <activity
  179. android:name=".ui.mine.ModifyPasswordActivity"
  180. android:configChanges="orientation|screenSize|keyboardHidden"
  181. android:screenOrientation="portrait" />
  182. <activity
  183. android:name=".ui.mine.PersonalCertificationActivity"
  184. android:configChanges="orientation|screenSize|keyboardHidden"
  185. android:screenOrientation="portrait" />
  186. <provider
  187. android:name="androidx.core.content.FileProvider"
  188. android:authorities="com.cooleshow.teacher.fileprovider"
  189. android:exported="false"
  190. android:grantUriPermissions="true"
  191. tools:replace="android:authorities">
  192. <meta-data
  193. android:name="android.support.FILE_PROVIDER_PATHS"
  194. android:resource="@xml/rc_file_path"
  195. tools:replace="android:resource" />
  196. </provider>
  197. <activity
  198. android:name=".ui.mine.AboutActivity"
  199. android:configChanges="orientation|screenSize|keyboardHidden"
  200. android:screenOrientation="portrait" />
  201. <activity
  202. android:name=".ui.mine.FeedBackActivity"
  203. android:configChanges="orientation|screenSize|keyboardHidden"
  204. android:screenOrientation="portrait" />
  205. <activity
  206. android:name=".ui.mine.MyBankCardActivity"
  207. android:configChanges="orientation|screenSize|keyboardHidden"
  208. android:screenOrientation="portrait" />
  209. <activity
  210. android:name=".ui.mine.BindBankCardActivity"
  211. android:configChanges="orientation|screenSize|keyboardHidden"
  212. android:screenOrientation="portrait" />
  213. <activity
  214. android:name=".ui.mine.InputBankVCodeActivity"
  215. android:configChanges="orientation|screenSize|keyboardHidden"
  216. android:screenOrientation="portrait" />
  217. <activity
  218. android:name=".ui.mine.BindCardSuccessActivity"
  219. android:configChanges="orientation|screenSize|keyboardHidden"
  220. android:screenOrientation="portrait" />
  221. <activity
  222. android:name=".ui.course.MineLiveCourseActivity"
  223. android:configChanges="orientation|screenSize|keyboardHidden"
  224. android:screenOrientation="portrait" />
  225. <activity
  226. android:name=".ui.course.CreateLiveCourseInfoActivity"
  227. android:configChanges="orientation|screenSize|keyboardHidden"
  228. android:screenOrientation="portrait" />
  229. <activity
  230. android:name=".ui.course.CreateLiveCourseArrangementActivity"
  231. android:configChanges="orientation|screenSize|keyboardHidden"
  232. android:screenOrientation="portrait" />
  233. <activity
  234. android:name=".ui.course.MineVideoCourseActivity"
  235. android:configChanges="orientation|screenSize|keyboardHidden"
  236. android:screenOrientation="portrait" />
  237. <activity
  238. android:name=".ui.live.CreateLiveActivity"
  239. android:configChanges="orientation|screenSize|keyboardHidden"
  240. android:screenOrientation="portrait" />
  241. <activity
  242. android:name=".ui.live.LiveListActivity"
  243. android:configChanges="orientation|screenSize|keyboardHidden"
  244. android:screenOrientation="portrait" />
  245. <activity
  246. android:name=".ui.score.MineScoreActivity"
  247. android:configChanges="orientation|screenSize|keyboardHidden"
  248. android:screenOrientation="portrait"
  249. android:windowSoftInputMode="adjustPan" />
  250. <activity
  251. android:name=".ui.work.HomeWorkActivity"
  252. android:configChanges="orientation|screenSize|keyboardHidden"
  253. android:screenOrientation="portrait" />
  254. <activity
  255. android:name=".ui.income.MineIncomeActivity"
  256. android:configChanges="orientation|screenSize|keyboardHidden"
  257. android:screenOrientation="portrait" />
  258. <activity
  259. android:name=".ui.income.FrozenAmountActivity"
  260. android:configChanges="orientation|screenSize|keyboardHidden"
  261. android:screenOrientation="portrait" />
  262. <activity
  263. android:name=".ui.income.PendingAmountActivity"
  264. android:configChanges="orientation|screenSize|keyboardHidden"
  265. android:screenOrientation="portrait" />
  266. <activity
  267. android:name=".ui.income.WithdrawalActivity"
  268. android:configChanges="orientation|screenSize|keyboardHidden"
  269. android:screenOrientation="portrait" />
  270. <activity
  271. android:name=".ui.income.WithdrawalSuccessActivity"
  272. android:configChanges="orientation|screenSize|keyboardHidden"
  273. android:screenOrientation="portrait" />
  274. <activity
  275. android:name=".ui.income.WithdrawalRecordActivity"
  276. android:configChanges="orientation|screenSize|keyboardHidden"
  277. android:screenOrientation="portrait" />
  278. <activity
  279. android:name=".ui.message.MessageBoxActivity"
  280. android:configChanges="orientation|screenSize|keyboardHidden"
  281. android:screenOrientation="portrait" />
  282. <activity
  283. android:name=".ui.mine.PayTestActivity"
  284. android:configChanges="orientation|screenSize|keyboardHidden"
  285. android:screenOrientation="portrait" />
  286. <activity
  287. android:name=".wxapi.WXPayEntryActivity"
  288. android:exported="true"
  289. android:launchMode="singleTop">
  290. <intent-filter>
  291. <action android:name="android.intent.action.VIEW" />
  292. <category android:name="android.intent.category.DEFAULT" />
  293. <data android:scheme="wx149a928c415c137a" />
  294. </intent-filter>
  295. </activity>
  296. <activity
  297. android:name=".ui.work.AssignHomeworkActivity"
  298. android:configChanges="orientation|screenSize"
  299. android:screenOrientation="portrait" />
  300. <activity
  301. android:name=".ui.mine.NetworkMonitoringActivity"
  302. android:configChanges="orientation|screenSize|keyboardHidden"
  303. android:screenOrientation="portrait" />
  304. <activity
  305. android:name=".ui.mine.EquipmentTestActivity"
  306. android:configChanges="orientation|screenSize|keyboardHidden"
  307. android:screenOrientation="portrait" />
  308. <activity
  309. android:name=".ui.income.EarningStatisticsActivity"
  310. android:configChanges="orientation|screenSize|keyboardHidden"
  311. android:screenOrientation="portrait" />
  312. <activity
  313. android:name=".ui.live.TeacherLiveRoomActivity"
  314. android:configChanges="orientation|screenSize|keyboardHidden"
  315. android:exported="false"
  316. android:launchMode="singleTask"
  317. android:screenOrientation="portrait"
  318. android:windowSoftInputMode="adjustResize"/> <!-- 分享开始 -->
  319. <activity
  320. android:name=".ui.mine.CoursewareListActivity"
  321. android:windowSoftInputMode="adjustPan"
  322. android:configChanges="orientation|screenSize|keyboardHidden"
  323. android:screenOrientation="portrait" />
  324. <activity
  325. android:name=".wxapi.WXEntryActivity"
  326. android:configChanges="keyboardHidden|orientation|screenSize"
  327. android:exported="true"
  328. android:theme="@android:style/Theme.Translucent.NoTitleBar" />
  329. <activity
  330. android:name="com.tencent.tauth.AuthActivity"
  331. android:launchMode="singleTask"
  332. android:noHistory="true">
  333. <intent-filter>
  334. <action android:name="android.intent.action.VIEW" />
  335. <category android:name="android.intent.category.DEFAULT" />
  336. <category android:name="android.intent.category.BROWSABLE" />
  337. <data android:scheme="tencent100424468" />
  338. </intent-filter>
  339. </activity>
  340. <activity
  341. android:name="com.tencent.connect.common.AssistActivity"
  342. android:configChanges="orientation|keyboardHidden|screenSize"
  343. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  344. tools:replace="android:configChanges" />
  345. <meta-data
  346. android:name="qqappid"
  347. android:value="1110018403" />
  348. <service
  349. android:name=".push.PushService"
  350. android:enabled="true"
  351. android:exported="false"
  352. android:process=":pushcore">
  353. <intent-filter>
  354. <action android:name="cn.jiguang.user.service.action" />
  355. </intent-filter>
  356. </service> <!-- User defined. For test only 用户自定义的广播接收器 -->
  357. <receiver
  358. android:name=".push.MyJPushMessageReceiver"
  359. android:enabled="true"
  360. android:exported="false">
  361. <intent-filter>
  362. <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
  363. <category android:name="${applicationId}" />
  364. </intent-filter>
  365. </receiver> <!-- JPush结束 -->
  366. <service
  367. android:name=".push.MyHWPushService"
  368. android:exported="false">
  369. <intent-filter>
  370. <action android:name="com.huawei.push.action.MESSAGING_EVENT" />
  371. </intent-filter>
  372. </service>
  373. <!-- 融云开始 -->
  374. <!--小米-->
  375. <receiver
  376. android:name=".push.CustomMiMessageReceiver"
  377. android:exported="true">
  378. <intent-filter>
  379. <action android:name="com.xiaomi.mipush.RECEIVE_MESSAGE" />
  380. </intent-filter>
  381. <intent-filter>
  382. <action android:name="com.xiaomi.mipush.MESSAGE_ARRIVED" />
  383. </intent-filter>
  384. <intent-filter>
  385. <action android:name="com.xiaomi.mipush.ERROR" />
  386. </intent-filter>
  387. </receiver>
  388. <receiver
  389. android:name=".push.SealNotificationReceiver"
  390. android:exported="true">
  391. <intent-filter>
  392. <action android:name="io.rong.push.intent.MESSAGE_ARRIVED" />
  393. <action android:name="io.rong.push.intent.MESSAGE_CLICKED" />
  394. <action android:name="io.rong.push.intent.THIRD_PARTY_PUSH_STATE" />
  395. </intent-filter>
  396. </receiver>
  397. <!--vivo-->
  398. <receiver android:name=".push.VivoPushReceiver">
  399. <intent-filter>
  400. <action android:name="com.vivo.pushclient.action.RECEIVE" />
  401. </intent-filter>
  402. </receiver>
  403. </application>
  404. </manifest>