AndroidManifest.xml 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  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.sheep.jiuyan.samllsheep">
  5. <!-- 极光推送 -->
  6. <!-- Required -->
  7. <permission
  8. android:name="${applicationId}.permission.JPUSH_MESSAGE"
  9. android:protectionLevel="signature" />
  10. <!-- Required 一些系统要求的权限,如访问网络等 -->
  11. <uses-permission android:name="${applicationId}.permission.JPUSH_MESSAGE" />
  12. <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
  13. <uses-permission android:name="android.permission.INTERNET" />
  14. <uses-permission android:name="android.permission.WAKE_LOCK" />
  15. <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  16. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  17. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  18. <uses-permission
  19. android:name="android.permission.WRITE_SETTINGS"
  20. tools:ignore="ProtectedPermissions" />
  21. <uses-permission android:name="android.permission.VIBRATE" />
  22. <uses-permission
  23. android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
  24. tools:ignore="ProtectedPermissions" />
  25. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  26. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  27. <!-- Optional for location -->
  28. <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <!-- 用于开启 debug 版本的应用在6.0 系统上 层叠窗口权限 -->
  29. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  30. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  31. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  32. <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
  33. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
  34. <!-- 极光推送end -->
  35. <uses-permission android:name="android.permission.CAMERA" />
  36. <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
  37. <uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW" />
  38. <uses-permission android:name="android.permission.REQUEST_MEDIA_PROJECTION" />
  39. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  40. <uses-permission android:name="android.permission.INTERNET" />
  41. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  42. <uses-permission android:name="android.permission.GET_TASKS" />
  43. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
  44. <uses-permission
  45. android:name="android.permission.PACKAGE_USAGE_STATS"
  46. tools:ignore="ProtectedPermissions" />
  47. <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
  48. <!-- 必须的权限配置 -->
  49. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  50. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  51. <uses-permission
  52. android:name="android.permission.READ_LOGS"
  53. tools:ignore="ProtectedPermissions" />
  54. <!-- 保存资源到SD卡 -->
  55. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  56. <!-- 推荐的权限 -->
  57. <!-- 添加如下权限,以便使用更多的第三方SDK和更精准的统计数据 -->
  58. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  59. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  60. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  61. <uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
  62. <uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
  63. <!-- 百度定位权限 start -->
  64. <!-- 这个权限用于进行网络定位 -->
  65. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  66. <!-- 这个权限用于访问GPS定位 -->
  67. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  68. <!-- 用于访问wifi网络信息,wifi信息会用于进行网络定位 -->
  69. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  70. <!-- 获取运营商信息,用于支持提供运营商信息相关的接口 -->
  71. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  72. <!-- 这个权限用于获取wifi的获取权限,wifi信息会用来进行网络定位 -->
  73. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  74. <!-- 用于读取手机当前的状态 -->
  75. <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  76. <!-- 写入扩展存储,向扩展卡写入数据,用于写入离线定位数据 -->
  77. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  78. <!-- 访问网络,网络定位需要上网 -->
  79. <uses-permission android:name="android.permission.INTERNET" />
  80. <!-- SD卡读取权限,用户写入离线定位数据 -->
  81. <uses-permission
  82. android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
  83. tools:ignore="ProtectedPermissions" />
  84. <!-- 百度定位权限 end -->
  85. <application
  86. android:name=".SheepApp"
  87. android:allowBackup="true"
  88. android:fullBackupContent="@xml/backup_descriptor"
  89. android:icon="@mipmap/icon"
  90. android:label="@string/app_name"
  91. android:largeHeap="true"
  92. android:persistent="true"
  93. android:supportsRtl="true"
  94. android:theme="@style/AppTheme">
  95. <meta-data
  96. android:name="com.sheep.jiuyan.samllsheep.utils.GlideApp"
  97. android:value="GlideModule" />
  98. <meta-data
  99. android:name="design_width_in_dp"
  100. android:value="375" />
  101. <meta-data
  102. android:name="design_height_in_dp"
  103. android:value="667" />
  104. <activity
  105. android:name=".wxapi.WXEntryActivity"
  106. android:exported="true"
  107. android:launchMode="singleTop" />
  108. <activity
  109. android:name="com.sheep.gamegroup.view.activity.WebviewAct"
  110. android:screenOrientation="portrait" />
  111. <service android:name=".service.DownloadService" />
  112. <service
  113. android:name=".service.AutoCheckService"
  114. android:exported="false"
  115. android:priority="1000"
  116. android:process=":auto_check" />
  117. <service android:name=".service.FloatShotScreenService" />
  118. <service
  119. android:name=".service.ListenerShotService"
  120. android:enabled="true"
  121. android:exported="true"
  122. android:process=":listener" />
  123. <service
  124. android:name=".service.ListenerShotNewService"
  125. android:enabled="true"
  126. android:exported="true" />
  127. <provider
  128. android:name=".provider.SheepFileProvider"
  129. android:authorities="${applicationId}.fileprovider"
  130. android:exported="false"
  131. android:grantUriPermissions="true">
  132. <!-- 元数据 -->
  133. <meta-data
  134. android:name="android.support.FILE_PROVIDER_PATHS"
  135. android:resource="@xml/file_paths" />
  136. </provider>
  137. <!-- 必须配置 -->
  138. <activity
  139. android:name="com.tencent.bugly.beta.ui.BetaActivity"
  140. android:configChanges="keyboardHidden|orientation|screenSize|locale"
  141. android:theme="@android:style/Theme.Translucent" />
  142. <!-- 必须配置 fileProvider, 注意: android:authorities="${applicationId}.fileProvider" 不要直接copy,设置为你的包名.fileProvider -->
  143. <provider
  144. android:name="android.support.v4.content.FileProvider"
  145. android:authorities="${applicationId}.fileProvider"
  146. android:exported="false"
  147. android:grantUriPermissions="true">
  148. <meta-data
  149. android:name="android.support.FILE_PROVIDER_PATHS"
  150. android:resource="@xml/file_paths" />
  151. </provider>
  152. <activity
  153. android:name="com.sheep.gamegroup.view.activity.PersonalInfoAct"
  154. android:screenOrientation="portrait" />
  155. <!-- 2.0 -->
  156. <activity
  157. android:name="com.sheep.gamegroup.view.activity.LoginAct"
  158. android:configChanges="keyboardHidden|screenSize|orientation"
  159. android:launchMode="singleTask"
  160. android:screenOrientation="portrait"
  161. android:theme="@style/FullScreenTheme"></activity>
  162. <!--<activity-->
  163. <!--android:name=".ui.activity.SignActivity"-->
  164. <!--android:screenOrientation="portrait"-->
  165. <!--android:theme="@style/SplashTheme">-->
  166. <!--<intent-filter>-->
  167. <!--<action android:name="android.intent.action.MAIN" />-->
  168. <!--<category android:name="android.intent.category.LAUNCHER" />-->
  169. <!--</intent-filter>-->
  170. <!--</activity>-->
  171. <activity
  172. android:name="com.sheep.gamegroup.view.activity.SplashAct"
  173. android:screenOrientation="portrait"
  174. android:theme="@style/SplashTheme">
  175. <intent-filter>
  176. <action android:name="android.intent.action.MAIN" />
  177. <category android:name="android.intent.category.LAUNCHER" />
  178. </intent-filter>
  179. </activity>
  180. <activity
  181. android:name="com.sheep.gamegroup.view.activity.MiddleSchemeAct"
  182. android:configChanges="keyboardHidden|screenSize|orientation"
  183. android:exported="true"
  184. android:hardwareAccelerated="true"
  185. android:launchMode="singleTask"
  186. android:screenOrientation="portrait"
  187. android:theme="@style/AppTheme"
  188. android:windowSoftInputMode="adjustPan|stateHidden">
  189. <intent-filter android:autoVerify="true">
  190. <!-- 协议部分,随便设置 -->
  191. <data
  192. android:host="small.kfzs.com"
  193. android:scheme="sheep" />
  194. <!-- 下面这几行也必须得设置 -->
  195. <category android:name="android.intent.category.DEFAULT" />
  196. <action android:name="android.intent.action.VIEW" />
  197. <category android:name="android.intent.category.BROWSABLE" />
  198. </intent-filter>
  199. </activity>
  200. <activity
  201. android:name="com.sheep.gamegroup.view.activity.PersonalCenterAct"
  202. android:screenOrientation="portrait" />
  203. <activity
  204. android:name="com.sheep.gamegroup.view.activity.WithdrawalAct"
  205. android:screenOrientation="portrait" />
  206. <activity
  207. android:name="com.sheep.gamegroup.view.activity.WithdrawalResultAct"
  208. android:screenOrientation="portrait" />
  209. <activity
  210. android:name="com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct"
  211. android:screenOrientation="portrait" />
  212. <activity
  213. android:name="com.sheep.gamegroup.view.activity.TryMakeMoneyact"
  214. android:screenOrientation="portrait" />
  215. <activity
  216. android:name="com.sheep.gamegroup.view.activity.GamemakeMoneyAct"
  217. android:screenOrientation="portrait" />
  218. <activity
  219. android:name="com.sheep.gamegroup.view.activity.LieMakeMoneyAct"
  220. android:launchMode="singleTask" />
  221. <activity
  222. android:name="com.sheep.gamegroup.view.activity.TaskListAct"
  223. android:screenOrientation="portrait" />
  224. <activity
  225. android:name="com.sheep.gamegroup.view.activity.ActAudit"
  226. android:screenOrientation="portrait" />
  227. <activity
  228. android:name="com.sheep.gamegroup.view.activity.GameTaskOrderListAct"
  229. android:screenOrientation="portrait" />
  230. <activity
  231. android:name="com.sheep.gamegroup.view.activity.WithdrawalListAct"
  232. android:screenOrientation="portrait" />
  233. <activity
  234. android:name="com.sheep.gamegroup.view.activity.ChangeTelAct"
  235. android:launchMode="singleTask"
  236. android:screenOrientation="portrait" />
  237. <activity
  238. android:name="com.sheep.gamegroup.view.activity.ActBindMobileRegister"
  239. android:launchMode="singleTask"
  240. android:screenOrientation="portrait" />
  241. <activity
  242. android:name="com.sheep.gamegroup.view.activity.TaskDetailAct"
  243. android:screenOrientation="portrait" />
  244. <activity
  245. android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
  246. android:theme="@style/MyDialogActivityTheme" />
  247. <!-- &lt;!&ndash;半袋米首页&ndash;&gt; -->
  248. <!-- <activity -->
  249. <!-- android:name="com.kfzs.duanduan.ActMain" -->
  250. <!-- android:configChanges="keyboardHidden|screenSize|orientation" -->
  251. <!-- android:exported="true" -->
  252. <!-- android:hardwareAccelerated="true" -->
  253. <!-- android:launchMode="singleTask" -->
  254. <!-- android:screenOrientation="portrait" -->
  255. <!-- android:theme="@style/AppTheme" -->
  256. <!-- android:windowSoftInputMode="adjustPan|stateHidden"> -->
  257. <!-- <intent-filter> -->
  258. <!-- <category android:name="android.intent.category.DEFAULT" /> -->
  259. <!-- <action android:name="android.intent.action.VIEW" /> -->
  260. <!-- </intent-filter> -->
  261. <!-- </activity> -->
  262. <activity
  263. android:name="com.sheep.gamegroup.view.activity.ActMain"
  264. android:configChanges="keyboardHidden|screenSize|orientation"
  265. android:exported="true"
  266. android:hardwareAccelerated="true"
  267. android:launchMode="singleTask"
  268. android:screenOrientation="portrait"
  269. android:theme="@style/AppTheme"
  270. android:windowSoftInputMode="adjustPan|stateHidden">
  271. <intent-filter>
  272. <category android:name="android.intent.category.DEFAULT" />
  273. <action android:name="android.intent.action.VIEW" />
  274. </intent-filter>
  275. </activity>
  276. <activity
  277. android:name="com.sheep.gamegroup.view.activity.AskGetMoneyAct"
  278. android:screenOrientation="portrait" />
  279. <activity
  280. android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
  281. android:screenOrientation="portrait" />
  282. <activity
  283. android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
  284. android:hardwareAccelerated="false"
  285. android:screenOrientation="portrait" />
  286. <!-- <provider -->
  287. <!-- android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider" -->
  288. <!-- android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}" -->
  289. <!-- android:exported="true" /> -->
  290. <receiver android:name="com.sheep.gamegroup.receiver.AppAddOrDelReceiver">
  291. <intent-filter>
  292. <action android:name="android.intent.action.PACKAGE_ADDED" />
  293. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  294. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  295. <data android:scheme="package" />
  296. </intent-filter>
  297. </receiver>
  298. <activity
  299. android:name="com.tencent.tauth.AuthActivity"
  300. android:launchMode="singleTask"
  301. android:noHistory="true">
  302. <intent-filter>
  303. <action android:name="android.intent.action.VIEW" />
  304. <category android:name="android.intent.category.DEFAULT" />
  305. <category android:name="android.intent.category.BROWSABLE" />
  306. <data android:scheme="tencent101461115" />
  307. </intent-filter>
  308. </activity>
  309. <activity
  310. android:name="com.tencent.connect.common.AssistActivity"
  311. android:configChanges="orientation|keyboardHidden|screenSize"
  312. android:screenOrientation="portrait" />
  313. <activity
  314. android:name="com.sheep.gamegroup.view.activity.CommitWxAct"
  315. android:screenOrientation="portrait"
  316. android:windowSoftInputMode="stateVisible|adjustPan" />
  317. <activity
  318. android:name="com.sheep.gamegroup.view.activity.ActGuideOnHook"
  319. android:screenOrientation="portrait" />
  320. <activity
  321. android:name="com.sheep.gamegroup.view.activity.CommitWxCodeAct"
  322. android:screenOrientation="portrait"
  323. android:windowSoftInputMode="stateVisible|adjustPan" />
  324. <activity
  325. android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
  326. android:screenOrientation="portrait" />
  327. <activity
  328. android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
  329. android:screenOrientation="portrait" />
  330. <activity
  331. android:name="com.sheep.gamegroup.view.activity.ChangeWxOrTelAct"
  332. android:screenOrientation="portrait" />
  333. <activity
  334. android:name="com.sheep.gamegroup.view.activity.ReNameActivity"
  335. android:screenOrientation="portrait"
  336. android:windowSoftInputMode="stateVisible|adjustPan" />
  337. <activity
  338. android:name="me.iwf.photopicker.PhotoPickerActivity"
  339. android:screenOrientation="portrait"
  340. android:theme="@style/Theme.AppCompat.NoActionBar" />
  341. <activity
  342. android:name="me.iwf.photopicker.PhotoPagerActivity"
  343. android:screenOrientation="portrait"
  344. android:theme="@style/Theme.AppCompat.NoActionBar" />
  345. <activity
  346. android:name="com.yalantis.ucrop.UCropActivity"
  347. android:screenOrientation="portrait"
  348. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  349. <activity
  350. android:name="com.sheep.gamegroup.view.activity.ActNewbieTaskList"
  351. android:screenOrientation="portrait" />
  352. <activity
  353. android:name="com.sheep.gamegroup.view.activity.ActUnderstandSheep"
  354. android:screenOrientation="portrait" />
  355. <activity
  356. android:name="com.sheep.gamegroup.view.activity.ActCreditCardTaskList"
  357. android:screenOrientation="portrait" />
  358. <activity
  359. android:name="com.sheep.gamegroup.view.activity.ActCreditCardWeb"
  360. android:screenOrientation="portrait" />
  361. <activity
  362. android:name="com.sheep.gamegroup.view.activity.ActXianWanWeb"
  363. android:screenOrientation="portrait" />
  364. <activity
  365. android:name="com.sheep.gamegroup.view.activity.TaskDetailCreditCardAct"
  366. android:screenOrientation="portrait" />
  367. <activity
  368. android:name="com.sheep.gamegroup.view.activity.TaskDetailAddQQAct"
  369. android:screenOrientation="portrait" />
  370. <activity
  371. android:name="com.sheep.gamegroup.view.activity.ActWeb"
  372. android:screenOrientation="portrait" />
  373. <activity
  374. android:name="com.sheep.gamegroup.view.activity.ActWebX5"
  375. android:screenOrientation="portrait" />
  376. <activity
  377. android:name="com.sheep.gamegroup.view.activity.ActMyMoney"
  378. android:screenOrientation="portrait" />
  379. <activity
  380. android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
  381. android:screenOrientation="portrait" />
  382. <activity
  383. android:name="com.sheep.gamegroup.view.activity.ActSignCard"
  384. android:screenOrientation="portrait" />
  385. <activity
  386. android:name="com.sheep.gamegroup.view.activity.ActSignCardRecord"
  387. android:screenOrientation="portrait" />
  388. <activity
  389. android:name="com.sheep.gamegroup.view.activity.SignCardAct"
  390. android:screenOrientation="portrait" />
  391. <activity
  392. android:name="com.sheep.gamegroup.view.activity.SignRankingsAct"
  393. android:screenOrientation="portrait" />
  394. <activity
  395. android:name="com.sheep.gamegroup.view.activity.SignRecordAct"
  396. android:screenOrientation="portrait" />
  397. <activity
  398. android:name="com.sheep.gamegroup.view.activity.SignRechargeAct"
  399. android:screenOrientation="portrait" />
  400. <activity
  401. android:name="com.sheep.gamegroup.view.activity.ActUserNoviceGuidance"
  402. android:screenOrientation="portrait" />
  403. <activity
  404. android:name="com.sheep.gamegroup.view.activity.ActXiaomiGame"
  405. android:screenOrientation="portrait" />
  406. <activity
  407. android:name="com.sheep.gamegroup.view.activity.ActTestExpression"
  408. android:screenOrientation="portrait" />
  409. <activity
  410. android:name="com.sheep.gamegroup.view.activity.MiddleScreenShotAct"
  411. android:screenOrientation="user"
  412. android:theme="@style/MyDialogActivityTheme" />
  413. <activity
  414. android:name="com.sheep.gamegroup.view.activity.ActPlayVideo"
  415. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  416. android:screenOrientation="user"
  417. android:theme="@style/AppTheme.noTitleBar" />
  418. <activity
  419. android:name="com.sheep.gamegroup.view.activity.ActInputAndPickerImg"
  420. android:theme="@style/AppTheme.translucent" />
  421. <activity
  422. android:name="com.sheep.gamegroup.view.activity.ActOverrideJsWeb"
  423. android:screenOrientation="portrait"/>
  424. <!-- 友盟start -->
  425. <meta-data
  426. android:name="UMENG_APPKEY"
  427. android:value="${umeng_app_key}" />
  428. <meta-data
  429. android:name="UMENG_CHANNEL"
  430. android:value="xxx" />
  431. <!-- 极光推送 -->
  432. <!-- For test only 测试状态通知栏,需要打开的Activity -->
  433. <activity
  434. android:name="com.sheep.gamegroup.view.activity.MiddleAct"
  435. android:exported="false">
  436. <intent-filter>
  437. <action android:name="jpush.testAction" />
  438. <category android:name="jpush.testCategory" />
  439. </intent-filter>
  440. </activity>
  441. <!-- Rich push 核心功能 since 2.0.6 -->
  442. <activity
  443. android:name="cn.jpush.android.ui.PopWinActivity"
  444. android:exported="false"
  445. android:theme="@style/MyDialogStyle" />
  446. <!-- Required SDK核心功能 -->
  447. <activity
  448. android:name="cn.jpush.android.ui.PushActivity"
  449. android:configChanges="orientation|keyboardHidden"
  450. android:exported="false"
  451. android:theme="@android:style/Theme.NoTitleBar">
  452. <intent-filter>
  453. <action android:name="cn.jpush.android.ui.PushActivity" />
  454. <category android:name="android.intent.category.DEFAULT" />
  455. <category android:name="${applicationId}" />
  456. </intent-filter>
  457. </activity>
  458. <!-- Required SDK 核心功能 -->
  459. <!-- 可配置android:process参数将PushService放在其他进程中 -->
  460. <service
  461. android:name="cn.jpush.android.service.PushService"
  462. android:exported="false"
  463. android:process=":mult">
  464. <intent-filter>
  465. <action android:name="cn.jpush.android.intent.REGISTER" />
  466. <action android:name="cn.jpush.android.intent.REPORT" />
  467. <action android:name="cn.jpush.android.intent.PushService" />
  468. <action android:name="cn.jpush.android.intent.PUSH_TIME" />
  469. </intent-filter>
  470. </service>
  471. <!-- since 3.0.9 Required SDK 核心功能 -->
  472. <provider
  473. android:name="cn.jpush.android.service.DataProvider"
  474. android:authorities="${applicationId}.DataProvider"
  475. android:exported="false" />
  476. <!-- since 1.8.0 option 可选项。用于同一设备中不同应用的JPush服务相互拉起的功能。 -->
  477. <!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
  478. <service
  479. android:name="cn.jpush.android.service.DaemonService"
  480. android:enabled="true"
  481. android:exported="true">
  482. <intent-filter>
  483. <action android:name="cn.jpush.android.intent.DaemonService" />
  484. <category android:name="${applicationId}" />
  485. </intent-filter>
  486. </service>
  487. <!-- since 3.1.0 Required SDK 核心功能 -->
  488. <provider
  489. android:name="cn.jpush.android.service.DownloadProvider"
  490. android:authorities="${applicationId}.DownloadProvider"
  491. android:exported="true" />
  492. <!-- Required SDK核心功能 -->
  493. <receiver
  494. android:name="cn.jpush.android.service.PushReceiver"
  495. android:enabled="true"
  496. android:exported="false">
  497. <intent-filter android:priority="1000">
  498. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <!-- Required 显示通知栏 -->
  499. <category android:name="${applicationId}" />
  500. </intent-filter>
  501. <intent-filter>
  502. <action android:name="android.intent.action.USER_PRESENT" />
  503. <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
  504. </intent-filter>
  505. <!-- Optional -->
  506. <intent-filter>
  507. <action android:name="android.intent.action.PACKAGE_ADDED" />
  508. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  509. <data android:scheme="package" />
  510. </intent-filter>
  511. </receiver>
  512. <!-- Required SDK核心功能 -->
  513. <receiver
  514. android:name="cn.jpush.android.service.AlarmReceiver"
  515. android:exported="false" />
  516. <!-- User defined. For test only 用户自定义的广播接收器 -->
  517. <receiver
  518. android:name="com.sheep.gamegroup.receiver.SheepJpushReceiver"
  519. android:enabled="true"
  520. android:exported="false">
  521. <intent-filter>
  522. <action android:name="cn.jpush.android.intent.REGISTRATION" /> <!-- Required 用户注册SDK的intent -->
  523. <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" /> <!-- Required 用户接收SDK消息的intent -->
  524. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" /> <!-- Required 用户接收SDK通知栏信息的intent -->
  525. <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" /> <!-- Required 用户打开自定义通知栏的intent -->
  526. <action android:name="cn.jpush.android.intent.CONNECTION" /> <!-- 接收网络变化 连接/断开 since 1.6.3 -->
  527. <category android:name="${applicationId}" />
  528. </intent-filter>
  529. </receiver>
  530. <!-- User defined. For test only 用户自定义接收消息器,3.0.7开始支持,目前新tag/alias接口设置结果会在该广播接收器对应的方法中回调 -->
  531. <receiver android:name="com.sheep.gamegroup.receiver.SheepJpushMessageReceiver">
  532. <intent-filter>
  533. <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
  534. <category android:name="${applicationId}" />
  535. </intent-filter>
  536. </receiver>
  537. <!-- Required . Enable it you can get statistics data with channel -->
  538. <meta-data
  539. android:name="JPUSH_CHANNEL"
  540. android:value="developer-default" />
  541. <meta-data
  542. android:name="JPUSH_APPKEY"
  543. android:value="${jpush_appkey}" /> <!-- </>值来自开发者平台取得的AppKey -->
  544. <!-- 极光推送end -->
  545. <!-- div start -->
  546. <activity
  547. android:name="com.sheep.gamegroup.view.activity.RechargeAct"
  548. android:screenOrientation="portrait" />
  549. <activity
  550. android:name="com.sheep.gamegroup.view.activity.RechargeQAct"
  551. android:screenOrientation="portrait" />
  552. <activity
  553. android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
  554. android:screenOrientation="portrait" />
  555. <!-- div end -->
  556. <!-- alipay 支付宝 sdk begin -->
  557. <activity
  558. android:name="com.alipay.sdk.app.H5PayActivity"
  559. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  560. android:exported="false"
  561. android:screenOrientation="behind"
  562. android:windowSoftInputMode="adjustResize|stateHidden" />
  563. <!-- alipay 支付宝 sdk end -->
  564. <!-- 百度定位 sdk start -->
  565. <meta-data
  566. android:name="com.baidu.lbsapi.API_KEY"
  567. android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL" />
  568. <service
  569. android:name="com.baidu.location.f"
  570. android:enabled="true"
  571. android:process=":remote" />
  572. <!-- 百度定位 sdk end -->
  573. <activity
  574. android:name="com.sheep.gamegroup.view.activity.ActNotice"
  575. android:screenOrientation="portrait" />
  576. <activity
  577. android:name="com.sheep.gamegroup.view.activity.ActGuide"
  578. android:screenOrientation="portrait" />
  579. <activity
  580. android:name="com.sheep.gamegroup.view.activity.ActLoadH5"
  581. android:screenOrientation="portrait" />
  582. <activity
  583. android:name="com.sheep.gamegroup.view.activity.ActUserLabelList"
  584. android:screenOrientation="portrait" />
  585. <activity
  586. android:name="com.sheep.gamegroup.view.activity.ActNewAboutUs"
  587. android:screenOrientation="portrait" />
  588. <activity
  589. android:name="com.sheep.gamegroup.view.activity.ActInstallApkList"
  590. android:screenOrientation="portrait" />
  591. <activity
  592. android:name="com.sheep.gamegroup.view.activity.ActSheepApkList"
  593. android:screenOrientation="portrait" />
  594. <activity
  595. android:name="com.sheep.gamegroup.view.activity.ActSheepPngList"
  596. android:screenOrientation="portrait" />
  597. <!--<activity-->
  598. <!--android:name="com.sheep.gamegroup.view.activity.ActFindGame"-->
  599. <!--android:screenOrientation="portrait" />-->
  600. <activity
  601. android:name="com.sheep.gamegroup.view.activity.ActArticle"
  602. android:configChanges="orientation|screenSize|keyboardHidden" />
  603. <!--小绵羊 3.4.2 合并资讯与资讯评论界面,且默认不显示输入法-->
  604. <activity
  605. android:name="com.sheep.gamegroup.view.activity.ActArticleComment"
  606. android:windowSoftInputMode="adjustUnspecified|stateHidden"
  607. android:configChanges="orientation|keyboardHidden"
  608. android:screenOrientation="portrait" />
  609. <activity
  610. android:name="com.sheep.gamegroup.view.activity.ActReservation"
  611. android:screenOrientation="portrait" />
  612. <activity
  613. android:name="com.sheep.gamegroup.view.activity.ActGameAgencyRecharge"
  614. android:screenOrientation="portrait" />
  615. <activity
  616. android:name="com.sheep.gamegroup.view.activity.ActGameAccount"
  617. android:screenOrientation="portrait" />
  618. <activity
  619. android:name="com.sheep.gamegroup.view.activity.ActSearchAppOrTask"
  620. android:screenOrientation="portrait" />
  621. <activity
  622. android:name="com.sheep.gamegroup.view.activity.ActSearchGame"
  623. android:screenOrientation="portrait" />
  624. <activity
  625. android:name="com.sheep.gamegroup.view.activity.ActSearchApp"
  626. android:screenOrientation="portrait" />
  627. <activity
  628. android:name="com.sheep.gamegroup.view.activity.ActSetting"
  629. android:screenOrientation="portrait" />
  630. <activity
  631. android:name="com.sheep.gamegroup.view.activity.ActMsg"
  632. android:screenOrientation="portrait" />
  633. <activity
  634. android:name="com.sheep.gamegroup.view.activity.ActGameCenter"
  635. android:screenOrientation="portrait" />
  636. <activity
  637. android:name="com.sheep.gamegroup.view.activity.ActDownloadWelfareList"
  638. android:screenOrientation="portrait" />
  639. <activity
  640. android:name="com.sheep.gamegroup.view.activity.ActGiftCenter"
  641. android:screenOrientation="portrait" />
  642. <activity
  643. android:name="com.sheep.gamegroup.view.activity.ActGiftDetail"
  644. android:screenOrientation="portrait" />
  645. <activity
  646. android:name="com.sheep.gamegroup.view.activity.ActMyWelfare"
  647. android:screenOrientation="portrait" />
  648. <activity
  649. android:name="com.sheep.gamegroup.view.activity.MessageInteractionDetailActivity"
  650. android:screenOrientation="portrait" />
  651. <activity
  652. android:name="com.sheep.gamegroup.view.activity.ActModifyThird"
  653. android:screenOrientation="portrait" />
  654. <activity
  655. android:name="com.sheep.gamegroup.view.activity.ActPlayGameList"
  656. android:screenOrientation="portrait" />
  657. <activity
  658. android:name="com.sheep.gamegroup.view.activity.ActPlayGameUserLikeList"
  659. android:screenOrientation="portrait" />
  660. <activity
  661. android:name="com.sheep.gamegroup.view.activity.ActPlayGameRecommendList"
  662. android:screenOrientation="portrait" />
  663. <activity
  664. android:name="com.sheep.gamegroup.view.activity.ActGcGameAppDetail"
  665. android:screenOrientation="portrait" />
  666. <activity
  667. android:name="com.sheep.gamegroup.view.activity.ActCommentGameApp"
  668. android:screenOrientation="portrait" />
  669. <activity
  670. android:name="com.sheep.gamegroup.view.activity.ActUserCommentDetail"
  671. android:screenOrientation="portrait" />
  672. <activity
  673. android:name="com.sheep.gamegroup.view.activity.ActUserAppHome"
  674. android:screenOrientation="portrait" />
  675. <activity
  676. android:name="com.sheep.gamegroup.view.activity.ActPlayGameDetail"
  677. android:screenOrientation="portrait" />
  678. <activity
  679. android:name="com.sheep.gamegroup.view.activity.ActSysNfDetail"
  680. android:screenOrientation="portrait" />
  681. <activity
  682. android:name="com.sheep.gamegroup.view.activity.ActInvitation"
  683. android:screenOrientation="portrait" />
  684. <!-- start幂动科技 -->
  685. <activity
  686. android:name="com.sheep.gamegroup.view.activity.ActMiDong"
  687. android:screenOrientation="portrait" />
  688. <service
  689. android:name="com.mdad.sdk.mdsdk.monitor.MonitorService"
  690. android:enabled="true"
  691. android:priority="1000" />
  692. <receiver
  693. android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
  694. android:enabled="true"
  695. android:exported="true">
  696. <intent-filter>
  697. <action android:name="android.intent.action.PACKAGE_ADDED" />
  698. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  699. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  700. <data android:scheme="package" />
  701. </intent-filter>
  702. </receiver>
  703. <receiver
  704. android:name="com.mdad.sdk.mdsdk.DownloadCompleteReceiver"
  705. android:enabled="true"
  706. android:exported="true">
  707. <intent-filter>
  708. <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
  709. <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
  710. </intent-filter>
  711. </receiver>
  712. <!-- end幂动科技 -->
  713. <!-- start 小绵羊sdk相关 -->
  714. <activity
  715. android:name="com.sheep.gamegroup.view.activity.ActPay"
  716. android:exported="true"
  717. android:screenOrientation="user" />
  718. <activity
  719. android:name="com.sheep.gamegroup.view.activity.GameCertificationActivity"
  720. android:exported="true"
  721. android:screenOrientation="portrait" />
  722. <!-- end 小绵羊sdk相关 -->
  723. <!-- 签到 -->
  724. <activity
  725. android:name=".ui.activity.SignActivity"
  726. android:screenOrientation="portrait"
  727. android:theme="@style/AppTheme.NoTitleBar.AlphaStatusBar" />
  728. <!-- 活动规则 -->
  729. <activity
  730. android:name=".ui.activity.ActiveRuleActivity"
  731. android:screenOrientation="portrait" />
  732. <!-- 小绵羊3.4.5 我的关注 -->
  733. <activity
  734. android:name="com.sheep.gamegroup.view.activity.ActMyFocus"
  735. android:screenOrientation="portrait" />
  736. <!-- 小绵羊3.4.5 足迹 -->
  737. <activity
  738. android:name="com.sheep.gamegroup.view.activity.ActFootMark"
  739. android:screenOrientation="portrait" />
  740. </application>
  741. </manifest>