AndroidManifest.xml 43 KB

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