AndroidManifest.xml 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981
  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. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  85. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  86. <uses-permission android:name="android.permission.CAMERA" />
  87. <uses-permission android:name="android.permission.RECORD_AUDIO" />
  88. <uses-permission android:name="android.permission.INTERNET" />
  89. <uses-permission android:name="android.permission.READ_CONTACTS" />
  90. <uses-permission android:name="android.permission.WRITE_CONTACTS" />
  91. <uses-feature android:name="android.hardware.camera" />
  92. <uses-feature android:name="android.hardware.camera.autofocus" />
  93. <permission
  94. android:name="android.permission.FLASHLIGHT"
  95. android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
  96. android:protectionLevel="normal" />
  97. <!-- 百度定位权限 end -->
  98. <application
  99. android:name=".SheepApp"
  100. android:allowBackup="true"
  101. android:fullBackupContent="@xml/backup_descriptor"
  102. android:icon="@mipmap/icon"
  103. android:label="@string/app_name"
  104. android:largeHeap="true"
  105. android:persistent="true"
  106. android:supportsRtl="true"
  107. android:theme="@style/AppTheme"
  108. android:usesCleartextTraffic="true">
  109. <meta-data
  110. android:name="com.sheep.jiuyan.samllsheep.utils.GlideApp"
  111. android:value="GlideModule" />
  112. <meta-data
  113. android:name="design_width_in_dp"
  114. android:value="375" />
  115. <meta-data
  116. android:name="design_height_in_dp"
  117. android:value="667" />
  118. <uses-library
  119. android:name="org.apache.http.legacy"
  120. android:required="false" />
  121. <activity
  122. android:name=".wxapi.WXEntryActivity"
  123. android:exported="true"
  124. android:launchMode="singleTop" />
  125. <activity
  126. android:name=".wxapi.WXPayEntryActivity"
  127. android:exported="true"
  128. android:launchMode="singleTop" />
  129. <activity
  130. android:name="com.sheep.gamegroup.view.activity.WebviewAct"
  131. android:screenOrientation="portrait"
  132. android:theme="@style/AppActionTheme" />
  133. <service android:name=".service.DownloadService" />
  134. <service
  135. android:name=".service.AutoCheckService"
  136. android:exported="false"
  137. android:priority="1000"
  138. android:process=":auto_check" />
  139. <service android:name=".service.FloatShotScreenService" />
  140. <service
  141. android:name=".service.ListenerShotService"
  142. android:enabled="true"
  143. android:exported="true"
  144. android:process=":listener" />
  145. <service
  146. android:name=".service.ListenerShotNewService"
  147. android:enabled="true"
  148. android:exported="true" />
  149. <provider
  150. android:name=".provider.SheepFileProvider"
  151. android:authorities="${applicationId}.fileprovider"
  152. android:exported="false"
  153. android:grantUriPermissions="true">
  154. <!-- 元数据 -->
  155. <meta-data
  156. android:name="android.support.FILE_PROVIDER_PATHS"
  157. android:resource="@xml/file_paths" />
  158. </provider>
  159. <!-- 必须配置 -->
  160. <activity
  161. android:name="com.tencent.bugly.beta.ui.BetaActivity"
  162. android:configChanges="keyboardHidden|orientation|screenSize|locale"
  163. android:theme="@android:style/Theme.Translucent" />
  164. <!-- 必须配置 fileProvider, 注意: android:authorities="${applicationId}.fileProvider" 不要直接copy,设置为你的包名.fileProvider -->
  165. <provider
  166. android:name="android.support.v4.content.FileProvider"
  167. android:authorities="${applicationId}.fileProvider"
  168. android:exported="false"
  169. android:grantUriPermissions="true">
  170. <meta-data
  171. android:name="android.support.FILE_PROVIDER_PATHS"
  172. android:resource="@xml/file_paths" />
  173. </provider>
  174. <activity
  175. android:name="com.sheep.gamegroup.view.activity.PersonalInfoAct"
  176. android:screenOrientation="portrait"
  177. android:theme="@style/AppActionTheme" />
  178. <activity
  179. android:name="com.sheep.gamegroup.view.activity.SplashAct"
  180. android:screenOrientation="portrait"
  181. android:theme="@style/SplashTheme">
  182. <intent-filter>
  183. <action android:name="android.intent.action.MAIN" />
  184. <category android:name="android.intent.category.LAUNCHER" />
  185. </intent-filter>
  186. </activity>
  187. <activity
  188. android:name="com.sheep.gamegroup.view.activity.MiddleSchemeAct"
  189. android:configChanges="keyboardHidden|screenSize|orientation"
  190. android:exported="true"
  191. android:hardwareAccelerated="true"
  192. android:launchMode="singleTask"
  193. android:screenOrientation="portrait"
  194. android:theme="@style/AppTheme"
  195. android:windowSoftInputMode="adjustPan|stateHidden">
  196. <intent-filter android:autoVerify="true">
  197. <!-- 协议部分,随便设置 -->
  198. <data
  199. android:host="small.kfzs.com"
  200. android:scheme="sheep" />
  201. <!-- 下面这几行也必须得设置 -->
  202. <category android:name="android.intent.category.DEFAULT" />
  203. <action android:name="android.intent.action.VIEW" />
  204. <category android:name="android.intent.category.BROWSABLE" />
  205. </intent-filter>
  206. </activity>
  207. <activity
  208. android:name="com.sheep.gamegroup.view.activity.PersonalCenterAct"
  209. android:screenOrientation="portrait"
  210. android:theme="@style/AppActionTheme" />
  211. <activity
  212. android:name="com.sheep.gamegroup.view.activity.WithdrawalAct"
  213. android:launchMode="singleTask"
  214. android:screenOrientation="portrait"
  215. android:theme="@style/AppActionTheme" />
  216. <activity
  217. android:name="com.sheep.gamegroup.view.activity.WithdrawalResultAct"
  218. android:screenOrientation="portrait"
  219. android:theme="@style/AppActionTheme" />
  220. <activity
  221. android:name="com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct"
  222. android:screenOrientation="portrait"
  223. android:theme="@style/AppActionTheme" />
  224. <activity
  225. android:name="com.sheep.gamegroup.view.activity.TryMakeMoneyact"
  226. android:screenOrientation="portrait"
  227. android:theme="@style/AppActionTheme" />
  228. <activity
  229. android:name="com.sheep.gamegroup.view.activity.GamemakeMoneyAct"
  230. android:screenOrientation="portrait"
  231. android:theme="@style/AppActionTheme" />
  232. <activity
  233. android:name="com.sheep.gamegroup.view.activity.LieMakeMoneyAct"
  234. android:launchMode="singleTask"
  235. android:theme="@style/AppActionTheme" />
  236. <activity
  237. android:name="com.sheep.gamegroup.view.activity.TaskListAct"
  238. android:screenOrientation="portrait"
  239. android:theme="@style/AppActionTheme" />
  240. <activity
  241. android:name="com.sheep.gamegroup.view.activity.ActAudit"
  242. android:screenOrientation="portrait"
  243. android:theme="@style/AppActionTheme" />
  244. <activity
  245. android:name="com.sheep.gamegroup.view.activity.GameTaskOrderListAct"
  246. android:screenOrientation="portrait"
  247. android:theme="@style/AppActionTheme" />
  248. <activity
  249. android:name="com.sheep.gamegroup.view.activity.WithdrawalListAct"
  250. android:screenOrientation="portrait"
  251. android:theme="@style/AppActionTheme" />
  252. <activity
  253. android:name="com.sheep.gamegroup.view.activity.ChangeTelAct"
  254. android:launchMode="singleTask"
  255. android:screenOrientation="portrait"
  256. android:theme="@style/AppActionTheme" />
  257. <activity
  258. android:name="com.sheep.gamegroup.view.activity.ActBindMobileRegister"
  259. android:launchMode="singleTask"
  260. android:screenOrientation="portrait"
  261. android:theme="@style/AppActionTheme" />
  262. <activity
  263. android:name="com.sheep.gamegroup.view.activity.TaskDetailAct"
  264. android:screenOrientation="portrait"
  265. android:theme="@style/AppActionTheme" />
  266. <activity
  267. android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
  268. android:theme="@style/MyDialogActivityTheme" />
  269. <activity
  270. android:name="com.sheep.gamegroup.view.activity.ActMain"
  271. android:configChanges="keyboardHidden|screenSize|orientation"
  272. android:exported="true"
  273. android:hardwareAccelerated="true"
  274. android:launchMode="singleTask"
  275. android:screenOrientation="portrait"
  276. android:theme="@style/AppTheme"
  277. android:windowSoftInputMode="adjustPan|stateHidden">
  278. <intent-filter>
  279. <category android:name="android.intent.category.DEFAULT" />
  280. <action android:name="android.intent.action.VIEW" />
  281. </intent-filter>
  282. </activity>
  283. <activity
  284. android:name="com.sheep.gamegroup.view.activity.AskGetMoneyAct"
  285. android:screenOrientation="portrait"
  286. android:theme="@style/AppActionTheme" />
  287. <activity
  288. android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
  289. android:screenOrientation="portrait"
  290. android:theme="@style/AppActionTheme" />
  291. <activity
  292. android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
  293. android:hardwareAccelerated="false"
  294. android:screenOrientation="portrait"
  295. android:theme="@style/AppActionTheme" />
  296. <!-- <provider -->
  297. <!-- android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider" -->
  298. <!-- android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}" -->
  299. <!-- android:exported="true" /> -->
  300. <receiver android:name="com.sheep.gamegroup.receiver.AppAddOrDelReceiver">
  301. <intent-filter>
  302. <action android:name="android.intent.action.PACKAGE_ADDED" />
  303. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  304. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  305. <data android:scheme="package" />
  306. </intent-filter>
  307. </receiver>
  308. <activity
  309. android:name="com.tencent.tauth.AuthActivity"
  310. android:launchMode="singleTask"
  311. android:noHistory="true">
  312. <intent-filter>
  313. <action android:name="android.intent.action.VIEW" />
  314. <category android:name="android.intent.category.DEFAULT" />
  315. <category android:name="android.intent.category.BROWSABLE" />
  316. <data android:scheme="tencent101461115" />
  317. </intent-filter>
  318. </activity>
  319. <activity
  320. android:name="com.tencent.connect.common.AssistActivity"
  321. android:configChanges="orientation|keyboardHidden|screenSize"
  322. android:screenOrientation="portrait" />
  323. <activity
  324. android:name="com.sheep.gamegroup.view.activity.CommitWxAct"
  325. android:screenOrientation="portrait"
  326. android:theme="@style/AppActionTheme"
  327. android:windowSoftInputMode="stateVisible|adjustPan" />
  328. <activity
  329. android:name="com.sheep.gamegroup.view.activity.ActGuideOnHook"
  330. android:screenOrientation="portrait"
  331. android:theme="@style/AppActionTheme" />
  332. <activity
  333. android:name="com.sheep.gamegroup.view.activity.CommitWxCodeAct"
  334. android:screenOrientation="portrait"
  335. android:theme="@style/AppActionTheme"
  336. android:windowSoftInputMode="stateVisible|adjustPan" />
  337. <activity
  338. android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
  339. android:screenOrientation="portrait"
  340. android:theme="@style/AppActionTheme" />
  341. <activity
  342. android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
  343. android:screenOrientation="portrait"
  344. android:theme="@style/AppActionTheme" />
  345. <activity
  346. android:name="com.sheep.gamegroup.view.activity.ChangeWxOrTelAct"
  347. android:screenOrientation="portrait"
  348. android:theme="@style/AppActionTheme" />
  349. <activity
  350. android:name="com.sheep.gamegroup.view.activity.ReNameActivity"
  351. android:screenOrientation="portrait"
  352. android:theme="@style/AppActionTheme"
  353. android:windowSoftInputMode="stateVisible|adjustPan" />
  354. <activity
  355. android:name="me.iwf.photopicker.PhotoPickerActivity"
  356. android:screenOrientation="portrait"
  357. android:theme="@style/Theme.AppCompat.NoActionBar" />
  358. <activity
  359. android:name="me.iwf.photopicker.PhotoPagerActivity"
  360. android:screenOrientation="portrait"
  361. android:theme="@style/Theme.AppCompat.NoActionBar" />
  362. <activity
  363. android:name="com.yalantis.ucrop.UCropActivity"
  364. android:screenOrientation="portrait"
  365. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  366. <activity
  367. android:name="com.sheep.gamegroup.view.activity.ActNewbieTaskList"
  368. android:screenOrientation="portrait"
  369. android:theme="@style/AppActionTheme" />
  370. <activity
  371. android:name="com.sheep.gamegroup.view.activity.ActUnderstandSheep"
  372. android:screenOrientation="portrait"
  373. android:theme="@style/AppActionTheme" />
  374. <activity
  375. android:name="com.sheep.gamegroup.view.activity.ActCreditCardTaskList"
  376. android:screenOrientation="portrait"
  377. android:theme="@style/AppActionTheme" />
  378. <activity
  379. android:name="com.sheep.gamegroup.view.activity.ActCreditCardWeb"
  380. android:screenOrientation="portrait"
  381. android:theme="@style/AppActionTheme" />
  382. <activity
  383. android:name="com.sheep.gamegroup.view.activity.ActXianWanWeb"
  384. android:screenOrientation="portrait"
  385. android:theme="@style/AppActionTheme" />
  386. <activity
  387. android:name="com.sheep.gamegroup.view.activity.TaskDetailCreditCardAct"
  388. android:screenOrientation="portrait"
  389. android:theme="@style/AppActionTheme" />
  390. <activity
  391. android:name="com.sheep.gamegroup.view.activity.TaskDetailAddQQAct"
  392. android:screenOrientation="portrait"
  393. android:theme="@style/AppActionTheme" />
  394. <activity
  395. android:name="com.sheep.gamegroup.view.activity.ActWebX5"
  396. android:screenOrientation="portrait"
  397. android:theme="@style/AppActionTheme" />
  398. <activity
  399. android:name="com.sheep.gamegroup.view.activity.ActImg"
  400. android:screenOrientation="portrait"
  401. android:theme="@style/AppActionTheme" />
  402. <activity
  403. android:name="com.sheep.gamegroup.view.activity.ActMyMoney"
  404. android:screenOrientation="portrait"
  405. android:theme="@style/AppActionTheme" />
  406. <activity
  407. android:name="com.sheep.gamegroup.view.activity.NewYearActMyMoney"
  408. android:screenOrientation="portrait"
  409. android:theme="@style/AppActionTheme" />
  410. <activity
  411. android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
  412. android:screenOrientation="portrait"
  413. android:theme="@style/AppActionTheme" />
  414. <activity
  415. android:name="com.sheep.gamegroup.view.activity.ActSignCard"
  416. android:screenOrientation="portrait"
  417. android:theme="@style/AppActionTheme" />
  418. <activity
  419. android:name="com.sheep.gamegroup.view.activity.ActSignCardRecord"
  420. android:screenOrientation="portrait"
  421. android:theme="@style/AppActionTheme" />
  422. <activity
  423. android:name="com.sheep.gamegroup.view.activity.SignCardAct"
  424. android:screenOrientation="portrait"
  425. android:theme="@style/AppActionTheme" />
  426. <activity
  427. android:name="com.sheep.gamegroup.view.activity.SignRankingsAct"
  428. android:screenOrientation="portrait"
  429. android:theme="@style/AppActionTheme" />
  430. <activity
  431. android:name="com.sheep.gamegroup.view.activity.SignRecordAct"
  432. android:screenOrientation="portrait"
  433. android:theme="@style/AppActionTheme" />
  434. <activity
  435. android:name="com.sheep.gamegroup.view.activity.ActUserNoviceGuidance"
  436. android:screenOrientation="portrait"
  437. android:theme="@style/AppActionTheme" />
  438. <activity
  439. android:name="com.sheep.gamegroup.view.activity.ActXiaomiGame"
  440. android:screenOrientation="portrait"
  441. android:theme="@style/AppActionTheme" />
  442. <activity
  443. android:name="com.sheep.gamegroup.view.activity.ActTestExpression"
  444. android:screenOrientation="portrait"
  445. android:theme="@style/AppActionTheme" />
  446. <activity
  447. android:name="com.sheep.gamegroup.view.activity.MiddleScreenShotAct"
  448. android:screenOrientation="user"
  449. android:theme="@style/MyDialogActivityTheme" />
  450. <activity
  451. android:name="com.sheep.gamegroup.view.activity.ActPlayVideo"
  452. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  453. android:screenOrientation="user"
  454. android:theme="@style/AppTheme.noTitleBar" />
  455. <activity
  456. android:name="com.sheep.gamegroup.view.activity.ActVideoDetail"
  457. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  458. android:screenOrientation="user"
  459. android:theme="@style/AppTheme.noTitleBar" />
  460. <activity
  461. android:name="com.sheep.gamegroup.view.activity.ActInputAndPickerImg"
  462. android:theme="@style/AppTheme.translucent" />
  463. <activity
  464. android:name="com.sheep.gamegroup.view.activity.ActVideoComment"
  465. android:theme="@style/AppTheme.fullTranslucent" />
  466. <!-- 友盟start -->
  467. <meta-data
  468. android:name="UMENG_APPKEY"
  469. android:value="${umeng_app_key}" />
  470. <meta-data
  471. android:name="UMENG_CHANNEL"
  472. android:value="xxx" />
  473. <!-- 极光推送 -->
  474. <!-- For test only 测试状态通知栏,需要打开的Activity -->
  475. <activity
  476. android:name="com.sheep.gamegroup.view.activity.MiddleAct"
  477. android:exported="false">
  478. <intent-filter>
  479. <action android:name="jpush.testAction" />
  480. <category android:name="jpush.testCategory" />
  481. </intent-filter>
  482. </activity>
  483. <!-- Rich push 核心功能 since 2.0.6 -->
  484. <activity
  485. android:name="cn.jpush.android.ui.PopWinActivity"
  486. android:exported="false"
  487. android:theme="@style/MyDialogStyle" />
  488. <!-- Required SDK核心功能 -->
  489. <activity
  490. android:name="cn.jpush.android.ui.PushActivity"
  491. android:configChanges="orientation|keyboardHidden"
  492. android:exported="false"
  493. android:theme="@android:style/Theme.NoTitleBar">
  494. <intent-filter>
  495. <action android:name="cn.jpush.android.ui.PushActivity" />
  496. <category android:name="android.intent.category.DEFAULT" />
  497. <category android:name="${applicationId}" />
  498. </intent-filter>
  499. </activity>
  500. <!-- Required SDK 核心功能 -->
  501. <!-- 可配置android:process参数将PushService放在其他进程中 -->
  502. <service
  503. android:name="cn.jpush.android.service.PushService"
  504. android:exported="false"
  505. android:process=":mult">
  506. <intent-filter>
  507. <action android:name="cn.jpush.android.intent.REGISTER" />
  508. <action android:name="cn.jpush.android.intent.REPORT" />
  509. <action android:name="cn.jpush.android.intent.PushService" />
  510. <action android:name="cn.jpush.android.intent.PUSH_TIME" />
  511. </intent-filter>
  512. </service>
  513. <!-- since 3.0.9 Required SDK 核心功能 -->
  514. <provider
  515. android:name="cn.jpush.android.service.DataProvider"
  516. android:authorities="${applicationId}.DataProvider"
  517. android:exported="false" />
  518. <!-- since 1.8.0 option 可选项。用于同一设备中不同应用的JPush服务相互拉起的功能。 -->
  519. <!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
  520. <service
  521. android:name="cn.jpush.android.service.DaemonService"
  522. android:enabled="true"
  523. android:exported="true">
  524. <intent-filter>
  525. <action android:name="cn.jpush.android.intent.DaemonService" />
  526. <category android:name="${applicationId}" />
  527. </intent-filter>
  528. </service>
  529. <!-- since 3.1.0 Required SDK 核心功能 -->
  530. <provider
  531. android:name="cn.jpush.android.service.DownloadProvider"
  532. android:authorities="${applicationId}.DownloadProvider"
  533. android:exported="true" />
  534. <!-- Required SDK核心功能 -->
  535. <receiver
  536. android:name="cn.jpush.android.service.PushReceiver"
  537. android:enabled="true"
  538. android:exported="false">
  539. <intent-filter android:priority="1000">
  540. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <!-- Required 显示通知栏 -->
  541. <category android:name="${applicationId}" />
  542. </intent-filter>
  543. <intent-filter>
  544. <action android:name="android.intent.action.USER_PRESENT" />
  545. <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
  546. </intent-filter>
  547. <!-- Optional -->
  548. <intent-filter>
  549. <action android:name="android.intent.action.PACKAGE_ADDED" />
  550. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  551. <data android:scheme="package" />
  552. </intent-filter>
  553. </receiver>
  554. <!-- Required SDK核心功能 -->
  555. <receiver
  556. android:name="cn.jpush.android.service.AlarmReceiver"
  557. android:exported="false" />
  558. <!-- User defined. For test only 用户自定义的广播接收器 -->
  559. <receiver
  560. android:name="com.sheep.gamegroup.receiver.SheepJpushReceiver"
  561. android:enabled="true"
  562. android:exported="false">
  563. <intent-filter>
  564. <action android:name="cn.jpush.android.intent.REGISTRATION" /> <!-- Required 用户注册SDK的intent -->
  565. <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" /> <!-- Required 用户接收SDK消息的intent -->
  566. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" /> <!-- Required 用户接收SDK通知栏信息的intent -->
  567. <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" /> <!-- Required 用户打开自定义通知栏的intent -->
  568. <action android:name="cn.jpush.android.intent.CONNECTION" /> <!-- 接收网络变化 连接/断开 since 1.6.3 -->
  569. <category android:name="${applicationId}" />
  570. </intent-filter>
  571. </receiver>
  572. <!-- User defined. For test only 用户自定义接收消息器,3.0.7开始支持,目前新tag/alias接口设置结果会在该广播接收器对应的方法中回调 -->
  573. <receiver android:name="com.sheep.gamegroup.receiver.SheepJpushMessageReceiver">
  574. <intent-filter>
  575. <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
  576. <category android:name="${applicationId}" />
  577. </intent-filter>
  578. </receiver>
  579. <!-- Required . Enable it you can get statistics data with channel -->
  580. <meta-data
  581. android:name="JPUSH_CHANNEL"
  582. android:value="developer-default" />
  583. <meta-data
  584. android:name="JPUSH_APPKEY"
  585. android:value="${jpush_appkey}" /> <!-- </>值来自开发者平台取得的AppKey -->
  586. <!-- 极光推送end -->
  587. <!-- div start -->
  588. <activity
  589. android:name="com.sheep.gamegroup.view.activity.RechargeAct"
  590. android:exported="true"
  591. android:screenOrientation="portrait"
  592. android:theme="@style/AppActionTheme" />
  593. <activity
  594. android:name="com.sheep.gamegroup.view.activity.RechargeQAct"
  595. android:screenOrientation="portrait"
  596. android:theme="@style/AppActionTheme" />
  597. <activity
  598. android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
  599. android:launchMode="singleTask"
  600. android:screenOrientation="portrait"
  601. android:theme="@style/AppActionTheme" />
  602. <!-- div end -->
  603. <!-- alipay 支付宝 sdk end -->
  604. <!-- 百度定位 sdk start -->
  605. <meta-data
  606. android:name="com.baidu.lbsapi.API_KEY"
  607. android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL" />
  608. <service
  609. android:name="com.baidu.location.f"
  610. android:enabled="true"
  611. android:process=":remote" />
  612. <!-- 百度定位 sdk end -->
  613. <activity
  614. android:name="com.sheep.gamegroup.view.activity.ActNotice"
  615. android:screenOrientation="portrait"
  616. android:theme="@style/AppActionTheme" />
  617. <activity
  618. android:name="com.sheep.gamegroup.view.activity.ActGuide"
  619. android:screenOrientation="portrait"
  620. android:theme="@style/AppActionTheme" />
  621. <activity
  622. android:name="com.sheep.gamegroup.view.activity.ActLoadH5"
  623. android:screenOrientation="portrait"
  624. android:theme="@style/AppActionTheme" />
  625. <activity
  626. android:name="com.sheep.gamegroup.view.activity.ActUserLabelList"
  627. android:screenOrientation="portrait"
  628. android:theme="@style/AppActionTheme" />
  629. <activity
  630. android:name="com.sheep.gamegroup.view.activity.ActNewAboutUs"
  631. android:screenOrientation="portrait"
  632. android:theme="@style/AppActionTheme" />
  633. <activity
  634. android:name="com.sheep.gamegroup.view.activity.ActInstallApkList"
  635. android:screenOrientation="portrait"
  636. android:theme="@style/AppActionTheme" />
  637. <activity
  638. android:name="com.sheep.gamegroup.view.activity.ActSheepApkList"
  639. android:screenOrientation="portrait"
  640. android:theme="@style/AppActionTheme" />
  641. <activity
  642. android:name="com.sheep.gamegroup.view.activity.ActSheepPngList"
  643. android:screenOrientation="portrait"
  644. android:theme="@style/AppActionTheme" />
  645. <activity
  646. android:name="com.sheep.gamegroup.view.activity.ActReservation"
  647. android:screenOrientation="portrait"
  648. android:theme="@style/AppActionTheme" />
  649. <activity
  650. android:name="com.sheep.gamegroup.view.activity.ActGameAgencyRecharge"
  651. android:screenOrientation="portrait"
  652. android:theme="@style/AppActionTheme" />
  653. <activity
  654. android:name="com.sheep.gamegroup.view.activity.ActGameAccount"
  655. android:screenOrientation="portrait"
  656. android:theme="@style/AppActionTheme" />
  657. <activity
  658. android:name="com.sheep.gamegroup.view.activity.ActSearchGame"
  659. android:screenOrientation="portrait"
  660. android:theme="@style/AppActionTheme" />
  661. <activity
  662. android:name="com.sheep.gamegroup.view.activity.ActSetting"
  663. android:screenOrientation="portrait"
  664. android:theme="@style/AppActionTheme" />
  665. <activity
  666. android:name="com.sheep.gamegroup.view.activity.ActGameCenter"
  667. android:screenOrientation="portrait"
  668. android:theme="@style/AppActionTheme" />
  669. <activity
  670. android:name="com.sheep.gamegroup.view.activity.ActDownloadWelfareList"
  671. android:screenOrientation="portrait"
  672. android:theme="@style/AppActionTheme" />
  673. <activity
  674. android:name="com.sheep.gamegroup.view.activity.ActGiftCenter"
  675. android:screenOrientation="portrait"
  676. android:theme="@style/AppActionTheme" />
  677. <activity
  678. android:name="com.sheep.gamegroup.view.activity.ActMyWelfare"
  679. android:screenOrientation="portrait"
  680. android:theme="@style/AppActionTheme" />
  681. <activity
  682. android:name="com.sheep.gamegroup.view.activity.MessageInteractionDetailActivity"
  683. android:exported="true"
  684. android:theme="@style/AppActionTheme" />
  685. <!-- start幂动科技 -->
  686. <activity
  687. android:name="com.sheep.gamegroup.view.activity.ActMiDong"
  688. android:screenOrientation="portrait"
  689. android:theme="@style/AppActionTheme" />
  690. <service
  691. android:name="com.baidu.location.f"
  692. android:enabled="true"
  693. android:process=":remote" />
  694. <!-- 百度定位 sdk end -->
  695. <!-- <activity -->
  696. <!-- android:name="com.sheep.gamegroup.view.activity.ActFindGame" -->
  697. <!-- android:screenOrientation="portrait" /> -->
  698. <activity
  699. android:name="com.sheep.gamegroup.view.activity.ActArticle"
  700. android:configChanges="orientation|screenSize|keyboardHidden" />
  701. <!-- 小绵羊 3.4.2 合并资讯与资讯评论界面,且默认不显示输入法 -->
  702. <activity
  703. android:name="com.sheep.gamegroup.view.activity.ActArticleComment"
  704. android:configChanges="orientation|keyboardHidden"
  705. android:screenOrientation="portrait"
  706. android:theme="@style/AppActionTheme"
  707. android:windowSoftInputMode="adjustUnspecified|stateHidden" />
  708. <activity
  709. android:name="com.sheep.gamegroup.view.activity.ActSearchAppOrTask"
  710. android:screenOrientation="portrait"
  711. android:theme="@style/AppActionTheme" />
  712. <activity
  713. android:name="com.sheep.gamegroup.view.activity.ActSearchApp"
  714. android:screenOrientation="portrait"
  715. android:theme="@style/AppActionTheme" />
  716. <activity
  717. android:name="com.sheep.gamegroup.view.activity.ActMsg"
  718. android:screenOrientation="portrait"
  719. android:theme="@style/AppActionTheme" />
  720. <activity
  721. android:name="com.sheep.gamegroup.view.activity.ActGiftDetail"
  722. android:screenOrientation="portrait"
  723. android:theme="@style/AppActionTheme" />
  724. <activity
  725. android:name="com.sheep.gamegroup.view.activity.ActModifyThird"
  726. android:screenOrientation="portrait"
  727. android:theme="@style/AppActionTheme" />
  728. <activity
  729. android:name="com.sheep.gamegroup.view.activity.ActPlayGameList"
  730. android:screenOrientation="portrait"
  731. android:theme="@style/AppActionTheme" />
  732. <activity
  733. android:name="com.sheep.gamegroup.view.activity.ActPlayGameUserLikeList"
  734. android:screenOrientation="portrait"
  735. android:theme="@style/AppActionTheme" />
  736. <activity
  737. android:name="com.sheep.gamegroup.view.activity.ActPlayGameRecommendList"
  738. android:screenOrientation="portrait"
  739. android:theme="@style/AppActionTheme" />
  740. <activity
  741. android:name="com.sheep.gamegroup.view.activity.ActGcGameAppDetail"
  742. android:screenOrientation="portrait" />
  743. <activity
  744. android:name="com.sheep.gamegroup.view.activity.ActCommentGameApp"
  745. android:screenOrientation="portrait"
  746. android:theme="@style/AppActionTheme" />
  747. <activity
  748. android:name="com.sheep.gamegroup.view.activity.ActUserCommentDetail"
  749. android:screenOrientation="portrait"
  750. android:theme="@style/AppActionTheme" />
  751. <activity
  752. android:name="com.sheep.gamegroup.view.activity.ActUserAppHome"
  753. android:screenOrientation="portrait" />
  754. <activity
  755. android:name="com.sheep.gamegroup.view.activity.ActSysNfDetail"
  756. android:screenOrientation="portrait"
  757. android:theme="@style/AppActionTheme" />
  758. <activity
  759. android:name="com.sheep.gamegroup.view.activity.ActInvitation"
  760. android:screenOrientation="portrait"
  761. android:theme="@style/AppActionTheme" />
  762. <!-- start幂动科技 -->
  763. <service
  764. android:name="com.mdad.sdk.mdsdk.monitor.MonitorService"
  765. android:enabled="true"
  766. android:priority="1000" />
  767. <receiver
  768. android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
  769. android:enabled="true"
  770. android:exported="true">
  771. <intent-filter>
  772. <action android:name="android.intent.action.PACKAGE_ADDED" />
  773. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  774. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  775. <data android:scheme="package" />
  776. </intent-filter>
  777. </receiver>
  778. <receiver
  779. android:name="com.mdad.sdk.mdsdk.DownloadCompleteReceiver"
  780. android:enabled="true"
  781. android:exported="true">
  782. <intent-filter>
  783. <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
  784. <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
  785. </intent-filter>
  786. </receiver>
  787. <!-- end幂动科技 -->
  788. <!-- start 小绵羊sdk相关 -->
  789. <activity
  790. android:name="com.sheep.gamegroup.view.activity.ActPay"
  791. android:exported="true"
  792. android:launchMode="singleInstance"
  793. android:screenOrientation="user"
  794. android:theme="@style/AppTheme.translucent" />
  795. <activity
  796. android:name="com.sheep.gamegroup.view.activity.GameCertificationActivity"
  797. android:exported="true"
  798. android:screenOrientation="portrait"
  799. android:theme="@style/AppActionTheme" />
  800. <!-- end 小绵羊sdk相关 -->
  801. <!-- 签到 -->
  802. <activity
  803. android:name=".ui.activity.SignActivity"
  804. android:screenOrientation="portrait"
  805. android:theme="@style/AppActionTheme" />
  806. <!-- 活动规则 -->
  807. <activity
  808. android:name=".ui.activity.ActiveRuleActivity"
  809. android:screenOrientation="portrait"
  810. android:theme="@style/AppActionTheme" />
  811. <!-- 小绵羊3.4.5 我的关注 -->
  812. <activity
  813. android:name="com.sheep.gamegroup.view.activity.ActMyFocus"
  814. android:screenOrientation="portrait"
  815. android:theme="@style/AppActionTheme" />
  816. <!-- 小绵羊3.4.5 足迹 -->
  817. <activity
  818. android:name="com.sheep.gamegroup.view.activity.ActFootprint"
  819. android:screenOrientation="portrait"
  820. android:theme="@style/AppActionTheme" />
  821. <!-- 小绵羊3.4.5 收徒红包 -->
  822. <activity
  823. android:name="com.sheep.gamegroup.view.activity.ActApprenticeRedPacket"
  824. android:screenOrientation="portrait"
  825. android:theme="@style/AppActionTheme" />
  826. <!-- 小绵羊3.4.5 兑换商城 -->
  827. <activity
  828. android:name="com.sheep.gamegroup.view.activity.ActExchangeMall"
  829. android:screenOrientation="portrait"
  830. android:theme="@style/AppActionTheme" />
  831. <!-- 小绵羊3.4.5 每日分享 -->
  832. <activity
  833. android:name="com.sheep.gamegroup.view.activity.ActEveryDayShare"
  834. android:screenOrientation="portrait"
  835. android:theme="@style/AppActionTheme" />
  836. <!-- 小绵羊3.4.5 娱乐抽奖 -->
  837. <activity
  838. android:name="com.sheep.gamegroup.view.activity.ActEntertainmentLuckDraw"
  839. android:screenOrientation="portrait"
  840. android:theme="@style/AppActionTheme" />
  841. <!-- 小绵羊3.4.5 金币中心 -->
  842. <activity
  843. android:name="com.sheep.gamegroup.view.activity.ActCoinCenter"
  844. android:screenOrientation="portrait"
  845. android:theme="@style/AppActionTheme" />
  846. <!-- 小绵羊3.4.5 发布发现内容 -->
  847. <activity
  848. android:name="com.sheep.gamegroup.view.activity.ActPublishArticle"
  849. android:screenOrientation="portrait"
  850. android:theme="@style/AppActionTheme" />
  851. <!-- 小绵羊3.4.5 选择图片与视频 -->
  852. <activity
  853. android:name="com.sheep.gamegroup.module.find.activity.ActMediaChoose"
  854. android:screenOrientation="portrait"
  855. android:theme="@style/AppActionTheme" />
  856. <activity
  857. android:name="com.sheep.gamegroup.module.login.LoginAct"
  858. android:launchMode="singleTask"
  859. android:screenOrientation="portrait"
  860. android:theme="@style/AppActionTheme" />
  861. <activity
  862. android:name="com.sheep.gamegroup.module.login.ChangePasswordAct"
  863. android:screenOrientation="portrait"
  864. android:theme="@style/AppActionTheme" />
  865. <activity
  866. android:name="com.sheep.gamegroup.module.login.ReLoginNameAct"
  867. android:screenOrientation="portrait"
  868. android:theme="@style/AppActionTheme" />
  869. <!-- 小绵羊3.4.7 新增界面 -->
  870. <activity
  871. android:name="com.sheep.gamegroup.module.user.activity.ActVip"
  872. android:screenOrientation="portrait"
  873. android:theme="@style/AppActionTheme" />
  874. <activity
  875. android:name="com.sheep.gamegroup.module.game.activity.ActMyGameList"
  876. android:screenOrientation="portrait"
  877. android:theme="@style/AppActionTheme" />
  878. <!-- 小绵羊3.4.10 新增界面 -->
  879. <activity
  880. android:name="com.sheep.gamegroup.module.game.activity.ActGameGroupMore"
  881. android:screenOrientation="portrait"
  882. android:theme="@style/AppActionTheme" />
  883. <activity
  884. android:name="com.sheep.gamegroup.module.game.activity.ActDownloadManager"
  885. android:screenOrientation="portrait"
  886. android:theme="@style/AppActionTheme" />
  887. <activity
  888. android:name="com.sheep.gamegroup.module.game.activity.ActGameCenterType"
  889. android:screenOrientation="portrait"
  890. android:theme="@style/AppActionTheme" />
  891. <activity
  892. android:name="com.sheep.gamegroup.module.game.activity.ActGameRank"
  893. android:screenOrientation="portrait"
  894. android:theme="@style/AppActionTheme" />
  895. <activity
  896. android:name="com.sheep.gamegroup.module.game.activity.ActSearchGameGroup"
  897. android:screenOrientation="portrait"
  898. android:theme="@style/AppActionTheme" />
  899. <activity
  900. android:name="com.sheep.gamegroup.module.game.activity.ActGameGroupOrGameDetail"
  901. android:screenOrientation="portrait"
  902. android:theme="@style/AppActionTheme" />
  903. <activity
  904. android:name="com.sheep.gamegroup.module.find.activity.ActFind"
  905. android:screenOrientation="portrait"
  906. android:theme="@style/AppActionTheme" />
  907. <provider
  908. android:name=".provider.TokenRenewalProvider"
  909. android:authorities="${applicationId}.renewal"
  910. android:enabled="true"
  911. android:exported="true" />
  912. <service
  913. android:name=".service.PushMessageService"
  914. android:exported="false"></service>
  915. </application>
  916. </manifest>