AndroidManifest.xml 14 KB

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