AndroidManifest.xml 45 KB

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