AndroidManifest.xml 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  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. <!---->
  178. <!--<category android:name="android.intent.category.LAUNCHER" />-->
  179. <!--</intent-filter>-->
  180. <!--</activity>-->
  181. <activity
  182. android:name="com.sheep.gamegroup.view.activity.MiddleSchemeAct"
  183. android:configChanges="keyboardHidden|screenSize|orientation"
  184. android:exported="true"
  185. android:hardwareAccelerated="true"
  186. android:launchMode="singleTask"
  187. android:screenOrientation="portrait"
  188. android:theme="@style/AppTheme"
  189. android:windowSoftInputMode="adjustPan|stateHidden">
  190. <intent-filter android:autoVerify="true">
  191. <!-- 协议部分,随便设置 -->
  192. <data
  193. android:host="small.kfzs.com"
  194. android:scheme="sheep" />
  195. <!-- 下面这几行也必须得设置 -->
  196. <category android:name="android.intent.category.DEFAULT" />
  197. <action android:name="android.intent.action.VIEW" />
  198. <category android:name="android.intent.category.BROWSABLE" />
  199. </intent-filter>
  200. </activity>
  201. <activity
  202. android:name="com.sheep.gamegroup.view.activity.PersonalCenterAct"
  203. android:screenOrientation="portrait" />
  204. <activity
  205. android:name="com.sheep.gamegroup.view.activity.WithdrawalAct"
  206. android:screenOrientation="portrait" />
  207. <activity
  208. android:name="com.sheep.gamegroup.view.activity.WithdrawalResultAct"
  209. android:screenOrientation="portrait" />
  210. <activity
  211. android:name="com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct"
  212. android:screenOrientation="portrait" />
  213. <activity
  214. android:name="com.sheep.gamegroup.view.activity.TryMakeMoneyact"
  215. android:screenOrientation="portrait" />
  216. <activity
  217. android:name="com.sheep.gamegroup.view.activity.GamemakeMoneyAct"
  218. android:screenOrientation="portrait" />
  219. <activity
  220. android:name="com.sheep.gamegroup.view.activity.LieMakeMoneyAct"
  221. android:launchMode="singleTask" />
  222. <activity
  223. android:name="com.sheep.gamegroup.view.activity.TaskListAct"
  224. android:screenOrientation="portrait" />
  225. <activity
  226. android:name="com.sheep.gamegroup.view.activity.ActAudit"
  227. android:screenOrientation="portrait" />
  228. <activity
  229. android:name="com.sheep.gamegroup.view.activity.GameTaskOrderListAct"
  230. android:screenOrientation="portrait" />
  231. <activity
  232. android:name="com.sheep.gamegroup.view.activity.WithdrawalListAct"
  233. android:screenOrientation="portrait" />
  234. <activity
  235. android:name="com.sheep.gamegroup.view.activity.ChangeTelAct"
  236. android:launchMode="singleTask"
  237. android:screenOrientation="portrait" />
  238. <activity
  239. android:name="com.sheep.gamegroup.view.activity.ActBindMobileRegister"
  240. android:launchMode="singleTask"
  241. android:screenOrientation="portrait" />
  242. <activity
  243. android:name="com.sheep.gamegroup.view.activity.TaskDetailAct"
  244. android:screenOrientation="portrait" />
  245. <activity
  246. android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
  247. android:theme="@style/MyDialogActivityTheme" />
  248. <!-- &lt;!&ndash;半袋米首页&ndash;&gt; -->
  249. <!-- <activity -->
  250. <!-- android:name="com.kfzs.duanduan.ActMain" -->
  251. <!-- android:configChanges="keyboardHidden|screenSize|orientation" -->
  252. <!-- android:exported="true" -->
  253. <!-- android:hardwareAccelerated="true" -->
  254. <!-- android:launchMode="singleTask" -->
  255. <!-- android:screenOrientation="portrait" -->
  256. <!-- android:theme="@style/AppTheme" -->
  257. <!-- android:windowSoftInputMode="adjustPan|stateHidden"> -->
  258. <!-- <intent-filter> -->
  259. <!-- <category android:name="android.intent.category.DEFAULT" /> -->
  260. <!-- <action android:name="android.intent.action.VIEW" /> -->
  261. <!-- </intent-filter> -->
  262. <!-- </activity> -->
  263. <activity
  264. android:name="com.sheep.gamegroup.view.activity.ActMain"
  265. android:configChanges="keyboardHidden|screenSize|orientation"
  266. android:exported="true"
  267. android:hardwareAccelerated="true"
  268. android:launchMode="singleTask"
  269. android:screenOrientation="portrait"
  270. android:theme="@style/AppTheme"
  271. android:windowSoftInputMode="adjustPan|stateHidden">
  272. <intent-filter>
  273. <category android:name="android.intent.category.DEFAULT" />
  274. <action android:name="android.intent.action.VIEW" />
  275. </intent-filter>
  276. </activity>
  277. <activity
  278. android:name="com.sheep.gamegroup.view.activity.AskGetMoneyAct"
  279. android:screenOrientation="portrait" />
  280. <activity
  281. android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
  282. android:screenOrientation="portrait" />
  283. <activity
  284. android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
  285. android:hardwareAccelerated="false"
  286. android:screenOrientation="portrait" />
  287. <!-- <provider -->
  288. <!-- android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider" -->
  289. <!-- android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}" -->
  290. <!-- android:exported="true" /> -->
  291. <receiver android:name="com.sheep.gamegroup.receiver.AppAddOrDelReceiver">
  292. <intent-filter>
  293. <action android:name="android.intent.action.PACKAGE_ADDED" />
  294. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  295. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  296. <data android:scheme="package" />
  297. </intent-filter>
  298. </receiver>
  299. <activity
  300. android:name="com.tencent.tauth.AuthActivity"
  301. android:launchMode="singleTask"
  302. android:noHistory="true">
  303. <intent-filter>
  304. <action android:name="android.intent.action.VIEW" />
  305. <category android:name="android.intent.category.DEFAULT" />
  306. <category android:name="android.intent.category.BROWSABLE" />
  307. <data android:scheme="tencent101461115" />
  308. </intent-filter>
  309. </activity>
  310. <activity
  311. android:name="com.tencent.connect.common.AssistActivity"
  312. android:configChanges="orientation|keyboardHidden|screenSize"
  313. android:screenOrientation="portrait" />
  314. <activity
  315. android:name="com.sheep.gamegroup.view.activity.CommitWxAct"
  316. android:screenOrientation="portrait"
  317. android:windowSoftInputMode="stateVisible|adjustPan" />
  318. <activity
  319. android:name="com.sheep.gamegroup.view.activity.ActGuideOnHook"
  320. android:screenOrientation="portrait" />
  321. <activity
  322. android:name="com.sheep.gamegroup.view.activity.CommitWxCodeAct"
  323. android:screenOrientation="portrait"
  324. android:windowSoftInputMode="stateVisible|adjustPan" />
  325. <activity
  326. android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
  327. android:screenOrientation="portrait" />
  328. <activity
  329. android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
  330. android:screenOrientation="portrait" />
  331. <activity
  332. android:name="com.sheep.gamegroup.view.activity.ChangeWxOrTelAct"
  333. android:screenOrientation="portrait" />
  334. <activity
  335. android:name="com.sheep.gamegroup.view.activity.ReNameActivity"
  336. android:screenOrientation="portrait"
  337. android:windowSoftInputMode="stateVisible|adjustPan" />
  338. <activity
  339. android:name="me.iwf.photopicker.PhotoPickerActivity"
  340. android:screenOrientation="portrait"
  341. android:theme="@style/Theme.AppCompat.NoActionBar" />
  342. <activity
  343. android:name="me.iwf.photopicker.PhotoPagerActivity"
  344. android:screenOrientation="portrait"
  345. android:theme="@style/Theme.AppCompat.NoActionBar" />
  346. <activity
  347. android:name="com.yalantis.ucrop.UCropActivity"
  348. android:screenOrientation="portrait"
  349. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  350. <activity
  351. android:name="com.sheep.gamegroup.view.activity.ActNewbieTaskList"
  352. android:screenOrientation="portrait" />
  353. <activity
  354. android:name="com.sheep.gamegroup.view.activity.ActUnderstandSheep"
  355. android:screenOrientation="portrait" />
  356. <activity
  357. android:name="com.sheep.gamegroup.view.activity.ActCreditCardTaskList"
  358. android:screenOrientation="portrait" />
  359. <activity
  360. android:name="com.sheep.gamegroup.view.activity.ActCreditCardWeb"
  361. android:screenOrientation="portrait" />
  362. <activity
  363. android:name="com.sheep.gamegroup.view.activity.ActXinwanWeb"
  364. android:screenOrientation="portrait" />
  365. <activity
  366. android:name="com.sheep.gamegroup.view.activity.TaskDetailCreditCardAct"
  367. android:screenOrientation="portrait" />
  368. <activity
  369. android:name="com.sheep.gamegroup.view.activity.TaskDetailAddQQAct"
  370. android:screenOrientation="portrait" />
  371. <activity
  372. android:name="com.sheep.gamegroup.view.activity.ActWeb"
  373. android:screenOrientation="portrait" />
  374. <activity
  375. android:name="com.sheep.gamegroup.view.activity.ActMyMoney"
  376. android:screenOrientation="portrait" />
  377. <activity
  378. android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
  379. android:screenOrientation="portrait" />
  380. <activity
  381. android:name="com.sheep.gamegroup.view.activity.ActSignCard"
  382. android:screenOrientation="portrait" />
  383. <activity
  384. android:name="com.sheep.gamegroup.view.activity.ActSignCardRecord"
  385. android:screenOrientation="portrait" />
  386. <activity
  387. android:name="com.sheep.gamegroup.view.activity.SignCardAct"
  388. android:screenOrientation="portrait" />
  389. <activity
  390. android:name="com.sheep.gamegroup.view.activity.SignRankingsAct"
  391. android:screenOrientation="portrait" />
  392. <activity
  393. android:name="com.sheep.gamegroup.view.activity.SignRecordAct"
  394. android:screenOrientation="portrait" />
  395. <activity
  396. android:name="com.sheep.gamegroup.view.activity.SignRechargeAct"
  397. android:screenOrientation="portrait" />
  398. <activity
  399. android:name="com.sheep.gamegroup.view.activity.ActXiaomiGame"
  400. android:screenOrientation="portrait" />
  401. <activity
  402. android:name="com.sheep.gamegroup.view.activity.MiddleScreenShotAct"
  403. android:screenOrientation="user"
  404. android:theme="@style/MyDialogActivityTheme" />
  405. <!-- 友盟start -->
  406. <meta-data
  407. android:name="UMENG_APPKEY"
  408. android:value="${umeng_app_key}" />
  409. <meta-data
  410. android:name="UMENG_CHANNEL"
  411. android:value="xxx" />
  412. <!-- 极光推送 -->
  413. <!-- For test only 测试状态通知栏,需要打开的Activity -->
  414. <activity
  415. android:name="com.sheep.gamegroup.view.activity.MiddleAct"
  416. android:exported="false">
  417. <intent-filter>
  418. <action android:name="jpush.testAction" />
  419. <category android:name="jpush.testCategory" />
  420. </intent-filter>
  421. </activity>
  422. <!-- Rich push 核心功能 since 2.0.6 -->
  423. <activity
  424. android:name="cn.jpush.android.ui.PopWinActivity"
  425. android:exported="false"
  426. android:theme="@style/MyDialogStyle" />
  427. <!-- Required SDK核心功能 -->
  428. <activity
  429. android:name="cn.jpush.android.ui.PushActivity"
  430. android:configChanges="orientation|keyboardHidden"
  431. android:exported="false"
  432. android:theme="@android:style/Theme.NoTitleBar">
  433. <intent-filter>
  434. <action android:name="cn.jpush.android.ui.PushActivity" />
  435. <category android:name="android.intent.category.DEFAULT" />
  436. <category android:name="${applicationId}" />
  437. </intent-filter>
  438. </activity>
  439. <!-- Required SDK 核心功能 -->
  440. <!-- 可配置android:process参数将PushService放在其他进程中 -->
  441. <service
  442. android:name="cn.jpush.android.service.PushService"
  443. android:exported="false"
  444. android:process=":mult">
  445. <intent-filter>
  446. <action android:name="cn.jpush.android.intent.REGISTER" />
  447. <action android:name="cn.jpush.android.intent.REPORT" />
  448. <action android:name="cn.jpush.android.intent.PushService" />
  449. <action android:name="cn.jpush.android.intent.PUSH_TIME" />
  450. </intent-filter>
  451. </service>
  452. <!-- since 3.0.9 Required SDK 核心功能 -->
  453. <provider
  454. android:name="cn.jpush.android.service.DataProvider"
  455. android:authorities="${applicationId}.DataProvider"
  456. android:exported="false" />
  457. <!-- since 1.8.0 option 可选项。用于同一设备中不同应用的JPush服务相互拉起的功能。 -->
  458. <!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
  459. <service
  460. android:name="cn.jpush.android.service.DaemonService"
  461. android:enabled="true"
  462. android:exported="true">
  463. <intent-filter>
  464. <action android:name="cn.jpush.android.intent.DaemonService" />
  465. <category android:name="${applicationId}" />
  466. </intent-filter>
  467. </service>
  468. <!-- since 3.1.0 Required SDK 核心功能 -->
  469. <provider
  470. android:name="cn.jpush.android.service.DownloadProvider"
  471. android:authorities="${applicationId}.DownloadProvider"
  472. android:exported="true" />
  473. <!-- Required SDK核心功能 -->
  474. <receiver
  475. android:name="cn.jpush.android.service.PushReceiver"
  476. android:enabled="true"
  477. android:exported="false">
  478. <intent-filter android:priority="1000">
  479. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <!-- Required 显示通知栏 -->
  480. <category android:name="${applicationId}" />
  481. </intent-filter>
  482. <intent-filter>
  483. <action android:name="android.intent.action.USER_PRESENT" />
  484. <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
  485. </intent-filter>
  486. <!-- Optional -->
  487. <intent-filter>
  488. <action android:name="android.intent.action.PACKAGE_ADDED" />
  489. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  490. <data android:scheme="package" />
  491. </intent-filter>
  492. </receiver>
  493. <!-- Required SDK核心功能 -->
  494. <receiver
  495. android:name="cn.jpush.android.service.AlarmReceiver"
  496. android:exported="false" />
  497. <!-- User defined. For test only 用户自定义的广播接收器 -->
  498. <receiver
  499. android:name="com.sheep.gamegroup.receiver.SheepJpushReceiver"
  500. android:enabled="true"
  501. android:exported="false">
  502. <intent-filter>
  503. <action android:name="cn.jpush.android.intent.REGISTRATION" /> <!-- Required 用户注册SDK的intent -->
  504. <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" /> <!-- Required 用户接收SDK消息的intent -->
  505. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" /> <!-- Required 用户接收SDK通知栏信息的intent -->
  506. <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" /> <!-- Required 用户打开自定义通知栏的intent -->
  507. <action android:name="cn.jpush.android.intent.CONNECTION" /> <!-- 接收网络变化 连接/断开 since 1.6.3 -->
  508. <category android:name="${applicationId}" />
  509. </intent-filter>
  510. </receiver>
  511. <!-- User defined. For test only 用户自定义接收消息器,3.0.7开始支持,目前新tag/alias接口设置结果会在该广播接收器对应的方法中回调 -->
  512. <receiver android:name="com.sheep.gamegroup.receiver.SheepJpushMessageReceiver">
  513. <intent-filter>
  514. <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
  515. <category android:name="${applicationId}" />
  516. </intent-filter>
  517. </receiver>
  518. <!-- Required . Enable it you can get statistics data with channel -->
  519. <meta-data
  520. android:name="JPUSH_CHANNEL"
  521. android:value="developer-default" />
  522. <meta-data
  523. android:name="JPUSH_APPKEY"
  524. android:value="${jpush_appkey}" /> <!-- </>值来自开发者平台取得的AppKey -->
  525. <!-- 极光推送end -->
  526. <!-- div start -->
  527. <activity
  528. android:name="com.sheep.gamegroup.view.activity.RechargeAct"
  529. android:screenOrientation="portrait" />
  530. <activity
  531. android:name="com.sheep.gamegroup.view.activity.RechargeQAct"
  532. android:screenOrientation="portrait" />
  533. <activity
  534. android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
  535. android:screenOrientation="portrait" />
  536. <!-- div end -->
  537. <!-- alipay 支付宝 sdk begin -->
  538. <activity
  539. android:name="com.alipay.sdk.app.H5PayActivity"
  540. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  541. android:exported="false"
  542. android:screenOrientation="behind"
  543. android:windowSoftInputMode="adjustResize|stateHidden" />
  544. <!-- alipay 支付宝 sdk end -->
  545. <!-- 百度定位 sdk start -->
  546. <meta-data
  547. android:name="com.baidu.lbsapi.API_KEY"
  548. android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL" />
  549. <service
  550. android:name="com.baidu.location.f"
  551. android:enabled="true"
  552. android:process=":remote" />
  553. <!-- 百度定位 sdk end -->
  554. <activity
  555. android:name="com.sheep.gamegroup.view.activity.ActNotice"
  556. android:screenOrientation="portrait" />
  557. <activity
  558. android:name="com.sheep.gamegroup.view.activity.ActGuide"
  559. android:screenOrientation="portrait" />
  560. <activity
  561. android:name="com.sheep.gamegroup.view.activity.ActLoadH5"
  562. android:screenOrientation="portrait" />
  563. <activity
  564. android:name="com.sheep.gamegroup.view.activity.ActUserLabelList"
  565. android:screenOrientation="portrait" />
  566. <activity
  567. android:name="com.sheep.gamegroup.view.activity.ActNewAboutUs"
  568. android:screenOrientation="portrait" />
  569. <activity
  570. android:name="com.sheep.gamegroup.view.activity.ActInstallApkList"
  571. android:screenOrientation="portrait" />
  572. <activity
  573. android:name="com.sheep.gamegroup.view.activity.ActSheepApkList"
  574. android:screenOrientation="portrait" />
  575. <activity
  576. android:name="com.sheep.gamegroup.view.activity.ActSheepPngList"
  577. android:screenOrientation="portrait" />
  578. <activity
  579. android:name="com.sheep.gamegroup.view.activity.ActFindGame"
  580. android:screenOrientation="portrait" />
  581. <activity
  582. android:name="com.sheep.gamegroup.view.activity.ActFindInformation"
  583. android:configChanges="orientation|screenSize|keyboardHidden" />
  584. <activity
  585. android:name="com.sheep.gamegroup.view.activity.ActReservation"
  586. android:screenOrientation="portrait" />
  587. <activity
  588. android:name="com.sheep.gamegroup.view.activity.ActGameAgencyRecharge"
  589. android:screenOrientation="portrait" />
  590. <activity
  591. android:name="com.sheep.gamegroup.view.activity.ActGameAccount"
  592. android:screenOrientation="portrait" />
  593. <activity
  594. android:name="com.sheep.gamegroup.view.activity.ActSearchGame"
  595. android:screenOrientation="portrait" />
  596. <activity
  597. android:name="com.sheep.gamegroup.view.activity.ActSearchApp"
  598. android:screenOrientation="portrait" />
  599. <activity
  600. android:name="com.sheep.gamegroup.view.activity.ActSetting"
  601. android:screenOrientation="portrait" />
  602. <activity
  603. android:name="com.sheep.gamegroup.view.activity.ActMsg"
  604. android:screenOrientation="portrait" />
  605. <activity
  606. android:name="com.sheep.gamegroup.view.activity.ActGameCenter"
  607. android:screenOrientation="portrait" />
  608. <activity
  609. android:name="com.sheep.gamegroup.view.activity.ActDownloadWelfareList"
  610. android:screenOrientation="portrait" />
  611. <activity
  612. android:name="com.sheep.gamegroup.view.activity.ActGiftCenter"
  613. android:screenOrientation="portrait" />
  614. <activity
  615. android:name="com.sheep.gamegroup.view.activity.ActGiftDetail"
  616. android:screenOrientation="portrait" />
  617. <activity
  618. android:name="com.sheep.gamegroup.view.activity.ActMyWelfare"
  619. android:screenOrientation="portrait" />
  620. <activity
  621. android:name="com.sheep.gamegroup.view.activity.MessageInteractionDetailActivity"
  622. android:screenOrientation="portrait" />
  623. <activity
  624. android:name="com.sheep.gamegroup.view.activity.ActModifyThird"
  625. android:screenOrientation="portrait" />
  626. <activity
  627. android:name="com.sheep.gamegroup.view.activity.ActPlayGameList"
  628. android:screenOrientation="portrait" />
  629. <activity
  630. android:name="com.sheep.gamegroup.view.activity.ActPlayGameUserLikeList"
  631. android:screenOrientation="portrait" />
  632. <activity
  633. android:name="com.sheep.gamegroup.view.activity.ActPlayGameRecommendList"
  634. android:screenOrientation="portrait" />
  635. <activity
  636. android:name="com.sheep.gamegroup.view.activity.ActGcGameAppDetail"
  637. android:screenOrientation="portrait" />
  638. <activity
  639. android:name="com.sheep.gamegroup.view.activity.ActCommentGameApp"
  640. android:screenOrientation="portrait" />
  641. <activity
  642. android:name="com.sheep.gamegroup.view.activity.ActUserCommentDetail"
  643. android:screenOrientation="portrait" />
  644. <activity
  645. android:name="com.sheep.gamegroup.view.activity.ActPlayGameDetail"
  646. android:screenOrientation="portrait" />
  647. <activity
  648. android:name="com.sheep.gamegroup.view.activity.ActSysNfDetail"
  649. android:screenOrientation="portrait" />
  650. <activity
  651. android:name="com.sheep.gamegroup.view.activity.ActInvitation"
  652. android:screenOrientation="portrait" />
  653. <!-- start幂动科技 -->
  654. <activity
  655. android:name="com.sheep.gamegroup.view.activity.ActMiDong"
  656. android:screenOrientation="portrait" />
  657. <activity
  658. android:name="com.sheep.gamegroup.view.activity.GameCertificationActivity"
  659. android:exported="true"
  660. android:screenOrientation="portrait" />
  661. <activity
  662. android:name="com.sheep.gamegroup.view.activity.ActPay"
  663. android:exported="true"
  664. android:screenOrientation="user" />
  665. <service
  666. android:name="com.mdad.sdk.mdsdk.monitor.MonitorService"
  667. android:enabled="true"
  668. android:priority="1000" />
  669. <receiver
  670. android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
  671. android:enabled="true"
  672. android:exported="true">
  673. <intent-filter>
  674. <action android:name="android.intent.action.PACKAGE_ADDED" />
  675. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  676. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  677. <data android:scheme="package" />
  678. </intent-filter>
  679. </receiver>
  680. <receiver
  681. android:name="com.mdad.sdk.mdsdk.DownloadCompleteReceiver"
  682. android:enabled="true"
  683. android:exported="true">
  684. <intent-filter>
  685. <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
  686. <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
  687. </intent-filter>
  688. </receiver>
  689. <!-- end幂动科技 -->
  690. <!-- start 有米科技 -->
  691. <activity
  692. android:name="com.youmi.android.offerdemo.PermissionCheckActivity"
  693. android:screenOrientation="portrait" />
  694. <activity
  695. android:name="com.youmi.android.offerdemo.YoumiOffersAdsDemo"
  696. android:screenOrientation="portrait" />
  697. <!-- end 有米科技 -->
  698. <!-- 搜索界面 -->
  699. <activity
  700. android:name=".ui.activity.SearchActivity"
  701. android:configChanges="orientation|keyboardHidden|screenSize"
  702. android:screenOrientation="portrait"
  703. android:theme="@style/AppTheme.NoTitleBar.AlphaStatusBar"
  704. android:windowSoftInputMode="stateHidden" />
  705. <!-- 签到 -->
  706. <!--<activity-->
  707. <!--android:name=".ui.activity.SignActivity"-->
  708. <!--android:screenOrientation="portrait"-->
  709. <!--android:theme="@style/AppTheme.NoTitleBar.AlphaStatusBar" />-->
  710. <!-- 用户引导 -->
  711. <activity
  712. android:name=".ui.activity.UserNavActivity"
  713. android:configChanges="orientation|screenSize"
  714. android:screenOrientation="portrait" />
  715. <!-- 活动规则 -->
  716. <activity
  717. android:name=".ui.activity.ActiveRuleActivity"
  718. android:screenOrientation="portrait" />
  719. <!-- 全屏视频播放 -->
  720. <activity
  721. android:name=".ui.activity.PlayVideoActivity"
  722. android:configChanges="orientation|screenSize"
  723. android:screenOrientation="landscape" />
  724. </application>
  725. </manifest>