AndroidManifest.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  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.student">
  5. <uses-permission android:name="android.permission.REORDER_TASKS" />
  6. <permission
  7. android:name="${applicationId}.permission.JPUSH_MESSAGE"
  8. android:protectionLevel="signature" />
  9. <uses-permission android:name="${applicationId}.permission.JPUSH_MESSAGE" />
  10. <permission
  11. android:name="${applicationId}.permission.MIPUSH_RECEIVE"
  12. android:protectionLevel="signature" />
  13. <uses-permission
  14. android:name="com.huawei.android.launcher.permission.CHANGE_BADGE"/>
  15. <queries>
  16. <package android:name="com.tencent.mm" /> <!-- // 指定微信包名-->
  17. <package android:name="com.tencent.mobileqq" /> <!-- //指定qq包名-->
  18. <package android:name="com.sina.weibo" /> <!-- //指定微博包名-->
  19. <package android:name="com.qzone" /> <!-- //指定QQ空间包名-->
  20. </queries>
  21. <application
  22. android:name=".App"
  23. android:allowBackup="true"
  24. android:icon="@mipmap/ic_launcher"
  25. android:label="@string/app_name"
  26. android:networkSecurityConfig="@xml/network_security_config"
  27. android:requestLegacyExternalStorage="true"
  28. android:supportsRtl="true"
  29. android:theme="@style/AppTheme"
  30. tools:replace="android:allowBackup">
  31. <meta-data
  32. android:name="design_width_in_dp"
  33. android:value="375" />
  34. <activity
  35. android:name=".ui.splash.SplashActivity"
  36. android:exported="true"
  37. android:theme="@style/SplashTheme">
  38. <intent-filter>
  39. <action android:name="android.intent.action.MAIN" />
  40. <category android:name="android.intent.category.LAUNCHER" />
  41. </intent-filter>
  42. <intent-filter>
  43. <!--colexiustudent://html:8888/SplashActivity?url=10011002-->
  44. <action android:name="android.intent.action.VIEW" />
  45. <category android:name="android.intent.category.DEFAULT" />
  46. <category android:name="android.intent.category.BROWSABLE" />
  47. <data
  48. android:host="html"
  49. android:path="/SplashActivity"
  50. android:port="8888"
  51. android:scheme="colexiustudent" />
  52. </intent-filter>
  53. </activity>
  54. <activity
  55. android:name=".ui.splash.GuideActivity"
  56. android:configChanges="orientation|screenSize|keyboardHidden"
  57. android:screenOrientation="portrait" />
  58. <activity
  59. android:name=".ui.main.MainActivity"
  60. android:configChanges="orientation|screenSize|keyboardHidden"
  61. android:exported="false"
  62. android:launchMode="singleTask"
  63. android:screenOrientation="portrait"
  64. android:windowSoftInputMode="adjustPan">
  65. <intent-filter>
  66. <!-- 这个action是给极光推送跳转的 oppo推送要求push的intent-filter应与其他功能的intent-filter区分开,勿添加其他action与data标签-->
  67. <action android:name="cn.jiguang.push.customAction" />
  68. <category android:name="android.intent.category.DEFAULT" />
  69. </intent-filter>
  70. <intent-filter>
  71. <!-- 这个action是给融云推送跳转的,比如华为的离线消息点击-->
  72. <action android:name="android.intent.action.VIEW" />
  73. <category android:name="android.intent.category.DEFAULT" />
  74. <data
  75. android:host="${applicationId}"
  76. android:pathPrefix="/conversationlist"
  77. android:scheme="rong" />
  78. </intent-filter>
  79. <intent-filter>
  80. <!-- 这个action是给融云推送跳转的,比如小米手机等消息点击-->
  81. <action android:name="android.intent.action.VIEW" />
  82. <category android:name="android.intent.category.DEFAULT" />
  83. <data
  84. android:host="${applicationId}"
  85. android:pathPrefix="/conversation/"
  86. android:scheme="rong" />
  87. </intent-filter>
  88. </activity>
  89. <activity
  90. android:name=".ui.web.WebActivity"
  91. android:configChanges="orientation|screenSize|keyboardHidden"
  92. android:screenOrientation="portrait" />
  93. <activity
  94. android:name=".ui.mine.SettingActivity"
  95. android:configChanges="orientation|screenSize|keyboardHidden"
  96. android:screenOrientation="portrait" />
  97. <activity
  98. android:name=".ui.mine.AboutActivity"
  99. android:configChanges="orientation|screenSize|keyboardHidden"
  100. android:screenOrientation="portrait" />
  101. <activity
  102. android:name=".ui.mine.PersonalSettingActivity"
  103. android:configChanges="orientation|screenSize|keyboardHidden"
  104. android:screenOrientation="portrait" />
  105. <activity
  106. android:name=".ui.mine.CheckModifyPhoneNumActivity"
  107. android:configChanges="orientation|screenSize|keyboardHidden"
  108. android:screenOrientation="portrait" />
  109. <activity
  110. android:name=".ui.mine.ModifyPhoneNumActivity"
  111. android:configChanges="orientation|screenSize|keyboardHidden"
  112. android:screenOrientation="portrait" />
  113. <activity
  114. android:name=".ui.mine.ModifyPasswordActivity"
  115. android:configChanges="orientation|screenSize|keyboardHidden"
  116. android:screenOrientation="portrait" />
  117. <activity
  118. android:name=".ui.mine.PersonalCertificationActivity"
  119. android:configChanges="orientation|screenSize|keyboardHidden"
  120. android:screenOrientation="portrait" />
  121. <activity
  122. android:name=".ui.mine.ModifyNickNameActivity"
  123. android:configChanges="orientation|screenSize|keyboardHidden"
  124. android:screenOrientation="portrait" />
  125. <activity
  126. android:name=".ui.mine.PayTestActivity"
  127. android:configChanges="orientation|screenSize|keyboardHidden"
  128. android:screenOrientation="portrait" />
  129. <activity
  130. android:name=".wxapi.WXPayEntryActivity"
  131. android:exported="true"
  132. android:launchMode="singleTop">
  133. <intent-filter>
  134. <action android:name="android.intent.action.VIEW" />
  135. <category android:name="android.intent.category.DEFAULT" />
  136. <data android:scheme="wx97408cd22c879ff7" />
  137. </intent-filter>
  138. </activity>
  139. <activity
  140. android:name=".ui.course.MineCourseActivity"
  141. android:configChanges="orientation|screenSize|keyboardHidden"
  142. android:screenOrientation="portrait" />
  143. <activity
  144. android:name=".ui.work.HomeWorkActivity"
  145. android:configChanges="orientation|screenSize|keyboardHidden"
  146. android:screenOrientation="portrait" />
  147. <activity
  148. android:name=".ui.message.MessageBoxActivity"
  149. android:configChanges="orientation|screenSize|keyboardHidden"
  150. android:screenOrientation="portrait" />
  151. <activity
  152. android:name=".ui.course.SparringCourseDetailActivity"
  153. android:configChanges="orientation|screenSize|keyboardHidden"
  154. android:screenOrientation="portrait"
  155. android:windowSoftInputMode="adjustNothing" />
  156. <activity
  157. android:name=".ui.course.PianoRoomCourseDetailActivity"
  158. android:configChanges="orientation|screenSize|keyboardHidden"
  159. android:screenOrientation="portrait"
  160. android:windowSoftInputMode="adjustNothing" />
  161. <activity
  162. android:name=".ui.course.PracticeCourseDetailActivity"
  163. android:configChanges="orientation|screenSize|keyboardHidden"
  164. android:screenOrientation="portrait" />
  165. <activity
  166. android:name=".ui.work.HomeWorkDetailActivity"
  167. android:configChanges="orientation|screenSize|keyboardHidden"
  168. android:screenOrientation="portrait" />
  169. <activity
  170. android:name=".ui.course.EvaluateTeacherActivity"
  171. android:configChanges="orientation|screenSize|keyboardHidden"
  172. android:screenOrientation="portrait" />
  173. <activity
  174. android:name=".ui.mine.TeachableInstrumentActivity"
  175. android:screenOrientation="portrait" />
  176. <activity
  177. android:name=".ui.mine.NetworkMonitoringActivity"
  178. android:configChanges="orientation|screenSize|keyboardHidden"
  179. android:screenOrientation="portrait" />
  180. <activity
  181. android:name=".ui.mine.EquipmentTestActivity"
  182. android:configChanges="orientation|screenSize|keyboardHidden"
  183. android:screenOrientation="portrait" />
  184. <activity
  185. android:name=".ui.mine.CheckTeachableActivity"
  186. android:configChanges="orientation|screenSize|keyboardHidden"
  187. android:screenOrientation="portrait" />
  188. <activity
  189. android:name=".ui.live.LiveRoomActivity"
  190. android:configChanges="orientation|screenSize|keyboardHidden"
  191. android:exported="false"
  192. android:launchMode="singleTask"
  193. android:screenOrientation="portrait"
  194. android:windowSoftInputMode="adjustResize">
  195. <intent-filter>
  196. <action android:name="com.cooleshow.student.ui.live.LiveRoomActivity" />
  197. <category android:name="android.intent.category.DEFAULT" />
  198. </intent-filter>
  199. </activity>
  200. <provider
  201. android:name="androidx.core.content.FileProvider"
  202. android:authorities="com.cooleshow.student.fileprovider"
  203. android:exported="false"
  204. android:grantUriPermissions="true"
  205. tools:replace="android:authorities">
  206. <meta-data
  207. android:name="android.support.FILE_PROVIDER_PATHS"
  208. android:resource="@xml/rc_file_path"
  209. tools:replace="android:resource" />
  210. </provider>
  211. <activity
  212. android:name=".ui.web.AccompanyActivity"
  213. android:configChanges="orientation|screenSize|keyboardHidden"
  214. android:screenOrientation="portrait" />
  215. <activity
  216. android:name=".ui.web.HtmlActivity"
  217. android:configChanges="orientation|screenSize|keyboardHidden"
  218. android:screenOrientation="portrait"
  219. android:windowSoftInputMode="adjustPan"/>
  220. <activity
  221. android:name=".ui.web.HtmlHorizontalScreenActivity"
  222. android:configChanges="orientation|screenSize|keyboardHidden"
  223. android:screenOrientation="landscape" />
  224. <activity
  225. android:name=".ui.mine.FeedBackActivity"
  226. android:configChanges="orientation|screenSize|keyboardHidden"
  227. android:screenOrientation="portrait" />
  228. <!-- 分享开始-->
  229. <activity
  230. android:name=".wxapi.WXEntryActivity"
  231. android:configChanges="keyboardHidden|orientation|screenSize"
  232. android:exported="true"
  233. android:theme="@android:style/Theme.Translucent.NoTitleBar" />
  234. <activity
  235. android:name="com.tencent.tauth.AuthActivity"
  236. android:launchMode="singleTask"
  237. android:noHistory="true">
  238. <intent-filter>
  239. <action android:name="android.intent.action.VIEW" />
  240. <category android:name="android.intent.category.DEFAULT" />
  241. <category android:name="android.intent.category.BROWSABLE" />
  242. <data android:scheme="tencent100424468" />
  243. </intent-filter>
  244. </activity>
  245. <activity
  246. android:name="com.tencent.connect.common.AssistActivity"
  247. android:configChanges="orientation|keyboardHidden|screenSize"
  248. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  249. tools:replace="android:configChanges" />
  250. <meta-data
  251. android:name="qqappid"
  252. android:value="1110018403" />
  253. <!-- 分享结束-->
  254. <service
  255. android:name=".push.PushService"
  256. android:enabled="true"
  257. android:exported="false"
  258. android:process=":pushcore">
  259. <intent-filter>
  260. <action android:name="cn.jiguang.user.service.action" />
  261. </intent-filter>
  262. </service> <!-- User defined. For test only 用户自定义的广播接收器 -->
  263. <receiver
  264. android:name=".push.MyJPushMessageReceiver"
  265. android:enabled="true"
  266. android:exported="false">
  267. <intent-filter>
  268. <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
  269. <category android:name="${applicationId}" />
  270. </intent-filter>
  271. </receiver> <!-- JPush结束 -->
  272. <service
  273. android:name=".push.MyHWPushService"
  274. android:exported="false">
  275. <intent-filter>
  276. <action android:name="com.huawei.push.action.MESSAGING_EVENT" />
  277. </intent-filter>
  278. </service>
  279. <meta-data
  280. android:name="com.huawei.hms.client.appid"
  281. android:value="106707955" />
  282. <service
  283. android:name="com.cooleshow.student.ui.live.floatPop.FloatingWindowService"
  284. android:exported="false" />
  285. <!--融云push start-->
  286. <receiver
  287. android:name="com.cooleshow.student.push.CustomMiMessageReceiver"
  288. android:exported="true">
  289. <intent-filter>
  290. <action android:name="com.xiaomi.mipush.RECEIVE_MESSAGE" />
  291. </intent-filter>
  292. <intent-filter>
  293. <action android:name="com.xiaomi.mipush.MESSAGE_ARRIVED" />
  294. </intent-filter>
  295. <intent-filter>
  296. <action android:name="com.xiaomi.mipush.ERROR" />
  297. </intent-filter>
  298. </receiver>
  299. <receiver
  300. android:name=".push.SealNotificationReceiver"
  301. android:exported="true">
  302. <intent-filter>
  303. <action android:name="io.rong.push.intent.MESSAGE_ARRIVED" />
  304. <action android:name="io.rong.push.intent.MESSAGE_CLICKED" />
  305. <action android:name="io.rong.push.intent.THIRD_PARTY_PUSH_STATE" />
  306. </intent-filter>
  307. </receiver>
  308. <!--vivo-->
  309. <receiver android:name="com.cooleshow.student.push.VivoPushReceiver">
  310. <intent-filter>
  311. <action android:name="com.vivo.pushclient.action.RECEIVE" />
  312. </intent-filter>
  313. </receiver>
  314. </application>
  315. </manifest>