AndroidManifest.xml 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882
  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:screenOrientation="portrait" />
  122. <service android:name=".service.DownloadService" />
  123. <service
  124. android:name=".service.AutoCheckService"
  125. android:exported="false"
  126. android:priority="1000"
  127. android:process=":auto_check" />
  128. <service android:name=".service.FloatShotScreenService" />
  129. <service
  130. android:name=".service.ListenerShotService"
  131. android:enabled="true"
  132. android:exported="true"
  133. android:process=":listener" />
  134. <service
  135. android:name=".service.ListenerShotNewService"
  136. android:enabled="true"
  137. android:exported="true" />
  138. <provider
  139. android:name=".provider.SheepFileProvider"
  140. android:authorities="${applicationId}.fileprovider"
  141. android:exported="false"
  142. android:grantUriPermissions="true">
  143. <!-- 元数据 -->
  144. <meta-data
  145. android:name="android.support.FILE_PROVIDER_PATHS"
  146. android:resource="@xml/file_paths" />
  147. </provider>
  148. <!-- 必须配置 -->
  149. <activity
  150. android:name="com.tencent.bugly.beta.ui.BetaActivity"
  151. android:configChanges="keyboardHidden|orientation|screenSize|locale"
  152. android:theme="@android:style/Theme.Translucent" />
  153. <!-- 必须配置 fileProvider, 注意: android:authorities="${applicationId}.fileProvider" 不要直接copy,设置为你的包名.fileProvider -->
  154. <provider
  155. android:name="android.support.v4.content.FileProvider"
  156. android:authorities="${applicationId}.fileProvider"
  157. android:exported="false"
  158. android:grantUriPermissions="true">
  159. <meta-data
  160. android:name="android.support.FILE_PROVIDER_PATHS"
  161. android:resource="@xml/file_paths" />
  162. </provider>
  163. <activity
  164. android:name="com.sheep.gamegroup.view.activity.PersonalInfoAct"
  165. android:theme="@style/AppActionTheme"
  166. android:screenOrientation="portrait" />
  167. <!-- 2.0 -->
  168. <activity
  169. android:name="com.sheep.gamegroup.view.activity.LoginAct"
  170. android:configChanges="keyboardHidden|screenSize|orientation"
  171. android:launchMode="singleTask"
  172. android:screenOrientation="portrait"
  173. android:theme="@style/FullScreenTheme" />
  174. <!-- <activity -->
  175. <!-- android:name=".ui.activity.SignActivity" -->
  176. <!-- android:screenOrientation="portrait" -->
  177. <!-- android:theme="@style/SplashTheme"> -->
  178. <!-- <intent-filter> -->
  179. <!-- <action android:name="android.intent.action.MAIN" /> -->
  180. <!-- <category android:name="android.intent.category.LAUNCHER" /> -->
  181. <!-- </intent-filter> -->
  182. <!-- </activity> -->
  183. <activity
  184. android:name="com.sheep.gamegroup.view.activity.SplashAct"
  185. android:screenOrientation="portrait"
  186. android:theme="@style/SplashTheme">
  187. <intent-filter>
  188. <action android:name="android.intent.action.MAIN" />
  189. <category android:name="android.intent.category.LAUNCHER" />
  190. </intent-filter>
  191. </activity>
  192. <activity
  193. android:name="com.sheep.gamegroup.view.activity.MiddleSchemeAct"
  194. android:configChanges="keyboardHidden|screenSize|orientation"
  195. android:exported="true"
  196. android:hardwareAccelerated="true"
  197. android:launchMode="singleTask"
  198. android:screenOrientation="portrait"
  199. android:theme="@style/AppTheme"
  200. android:windowSoftInputMode="adjustPan|stateHidden">
  201. <intent-filter android:autoVerify="true">
  202. <!-- 协议部分,随便设置 -->
  203. <data
  204. android:host="small.kfzs.com"
  205. android:scheme="sheep" />
  206. <!-- 下面这几行也必须得设置 -->
  207. <category android:name="android.intent.category.DEFAULT" />
  208. <action android:name="android.intent.action.VIEW" />
  209. <category android:name="android.intent.category.BROWSABLE" />
  210. </intent-filter>
  211. </activity>
  212. <activity
  213. android:name="com.sheep.gamegroup.view.activity.PersonalCenterAct"
  214. android:screenOrientation="portrait" />
  215. <activity
  216. android:name="com.sheep.gamegroup.view.activity.WithdrawalAct"
  217. android:screenOrientation="portrait" />
  218. <activity
  219. android:name="com.sheep.gamegroup.view.activity.WithdrawalResultAct"
  220. android:screenOrientation="portrait" />
  221. <activity
  222. android:name="com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct"
  223. android:screenOrientation="portrait" />
  224. <activity
  225. android:name="com.sheep.gamegroup.view.activity.TryMakeMoneyact"
  226. android:screenOrientation="portrait" />
  227. <activity
  228. android:name="com.sheep.gamegroup.view.activity.GamemakeMoneyAct"
  229. android:screenOrientation="portrait" />
  230. <activity
  231. android:name="com.sheep.gamegroup.view.activity.LieMakeMoneyAct"
  232. android:launchMode="singleTask" />
  233. <activity
  234. android:name="com.sheep.gamegroup.view.activity.TaskListAct"
  235. android:screenOrientation="portrait" />
  236. <activity
  237. android:name="com.sheep.gamegroup.view.activity.ActAudit"
  238. android:screenOrientation="portrait" />
  239. <activity
  240. android:name="com.sheep.gamegroup.view.activity.GameTaskOrderListAct"
  241. android:screenOrientation="portrait" />
  242. <activity
  243. android:name="com.sheep.gamegroup.view.activity.WithdrawalListAct"
  244. android:screenOrientation="portrait" />
  245. <activity
  246. android:name="com.sheep.gamegroup.view.activity.ChangeTelAct"
  247. android:launchMode="singleTask"
  248. android:screenOrientation="portrait" />
  249. <activity
  250. android:name="com.sheep.gamegroup.view.activity.ActBindMobileRegister"
  251. android:launchMode="singleTask"
  252. android:screenOrientation="portrait" />
  253. <activity
  254. android:name="com.sheep.gamegroup.view.activity.TaskDetailAct"
  255. android:screenOrientation="portrait" />
  256. <activity
  257. android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
  258. android:theme="@style/MyDialogActivityTheme" />
  259. <!-- &lt;!&ndash;半袋米首页&ndash;&gt; -->
  260. <!-- <activity -->
  261. <!-- android:name="com.kfzs.duanduan.ActMain" -->
  262. <!-- android:configChanges="keyboardHidden|screenSize|orientation" -->
  263. <!-- android:exported="true" -->
  264. <!-- android:hardwareAccelerated="true" -->
  265. <!-- android:launchMode="singleTask" -->
  266. <!-- android:screenOrientation="portrait" -->
  267. <!-- android:theme="@style/AppTheme" -->
  268. <!-- android:windowSoftInputMode="adjustPan|stateHidden"> -->
  269. <!-- <intent-filter> -->
  270. <!-- <category android:name="android.intent.category.DEFAULT" /> -->
  271. <!-- <action android:name="android.intent.action.VIEW" /> -->
  272. <!-- </intent-filter> -->
  273. <!-- </activity> -->
  274. <activity
  275. android:name="com.sheep.gamegroup.view.activity.ActMain"
  276. android:configChanges="keyboardHidden|screenSize|orientation"
  277. android:exported="true"
  278. android:hardwareAccelerated="true"
  279. android:launchMode="singleTask"
  280. android:screenOrientation="portrait"
  281. android:theme="@style/AppTheme"
  282. android:windowSoftInputMode="adjustPan|stateHidden">
  283. <intent-filter>
  284. <category android:name="android.intent.category.DEFAULT" />
  285. <action android:name="android.intent.action.VIEW" />
  286. </intent-filter>
  287. </activity>
  288. <activity
  289. android:name="com.sheep.gamegroup.view.activity.AskGetMoneyAct"
  290. android:screenOrientation="portrait" />
  291. <activity
  292. android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
  293. android:screenOrientation="portrait" />
  294. <activity
  295. android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
  296. android:hardwareAccelerated="false"
  297. android:screenOrientation="portrait" />
  298. <!-- <provider -->
  299. <!-- android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider" -->
  300. <!-- android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}" -->
  301. <!-- android:exported="true" /> -->
  302. <receiver android:name="com.sheep.gamegroup.receiver.AppAddOrDelReceiver">
  303. <intent-filter>
  304. <action android:name="android.intent.action.PACKAGE_ADDED" />
  305. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  306. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  307. <data android:scheme="package" />
  308. </intent-filter>
  309. </receiver>
  310. <activity
  311. android:name="com.tencent.tauth.AuthActivity"
  312. android:launchMode="singleTask"
  313. android:noHistory="true">
  314. <intent-filter>
  315. <action android:name="android.intent.action.VIEW" />
  316. <category android:name="android.intent.category.DEFAULT" />
  317. <category android:name="android.intent.category.BROWSABLE" />
  318. <data android:scheme="tencent101461115" />
  319. </intent-filter>
  320. </activity>
  321. <activity
  322. android:name="com.tencent.connect.common.AssistActivity"
  323. android:configChanges="orientation|keyboardHidden|screenSize"
  324. android:screenOrientation="portrait" />
  325. <activity
  326. android:name="com.sheep.gamegroup.view.activity.CommitWxAct"
  327. android:screenOrientation="portrait"
  328. android:windowSoftInputMode="stateVisible|adjustPan" />
  329. <activity
  330. android:name="com.sheep.gamegroup.view.activity.ActGuideOnHook"
  331. android:screenOrientation="portrait" />
  332. <activity
  333. android:name="com.sheep.gamegroup.view.activity.CommitWxCodeAct"
  334. android:screenOrientation="portrait"
  335. android:windowSoftInputMode="stateVisible|adjustPan" />
  336. <activity
  337. android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
  338. android:screenOrientation="portrait" />
  339. <activity
  340. android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
  341. android:screenOrientation="portrait" />
  342. <activity
  343. android:name="com.sheep.gamegroup.view.activity.ChangeWxOrTelAct"
  344. android:screenOrientation="portrait" />
  345. <activity
  346. android:name="com.sheep.gamegroup.view.activity.ReNameActivity"
  347. android:screenOrientation="portrait"
  348. android:theme="@style/AppActionTheme"
  349. android:windowSoftInputMode="stateVisible|adjustPan" />
  350. <activity
  351. android:name="me.iwf.photopicker.PhotoPickerActivity"
  352. android:screenOrientation="portrait"
  353. android:theme="@style/Theme.AppCompat.NoActionBar" />
  354. <activity
  355. android:name="me.iwf.photopicker.PhotoPagerActivity"
  356. android:screenOrientation="portrait"
  357. android:theme="@style/Theme.AppCompat.NoActionBar" />
  358. <activity
  359. android:name="com.yalantis.ucrop.UCropActivity"
  360. android:screenOrientation="portrait"
  361. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  362. <activity
  363. android:name="com.sheep.gamegroup.view.activity.ActNewbieTaskList"
  364. android:screenOrientation="portrait" />
  365. <activity
  366. android:name="com.sheep.gamegroup.view.activity.ActUnderstandSheep"
  367. android:screenOrientation="portrait" />
  368. <activity
  369. android:name="com.sheep.gamegroup.view.activity.ActCreditCardTaskList"
  370. android:screenOrientation="portrait" />
  371. <activity
  372. android:name="com.sheep.gamegroup.view.activity.ActCreditCardWeb"
  373. android:screenOrientation="portrait" />
  374. <activity
  375. android:name="com.sheep.gamegroup.view.activity.ActXianWanWeb"
  376. android:screenOrientation="portrait" />
  377. <activity
  378. android:name="com.sheep.gamegroup.view.activity.TaskDetailCreditCardAct"
  379. android:screenOrientation="portrait" />
  380. <activity
  381. android:name="com.sheep.gamegroup.view.activity.TaskDetailAddQQAct"
  382. android:screenOrientation="portrait" />
  383. <activity
  384. android:name="com.sheep.gamegroup.view.activity.ActWeb"
  385. android:screenOrientation="portrait" />
  386. <activity
  387. android:name="com.sheep.gamegroup.view.activity.ActWebX5"
  388. android:screenOrientation="portrait" />
  389. <activity
  390. android:name="com.sheep.gamegroup.view.activity.ActMyMoney"
  391. android:screenOrientation="portrait" />
  392. <activity
  393. android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
  394. android:screenOrientation="portrait" />
  395. <activity
  396. android:name="com.sheep.gamegroup.view.activity.ActSignCard"
  397. android:screenOrientation="portrait" />
  398. <activity
  399. android:name="com.sheep.gamegroup.view.activity.ActSignCardRecord"
  400. android:screenOrientation="portrait" />
  401. <activity
  402. android:name="com.sheep.gamegroup.view.activity.SignCardAct"
  403. android:screenOrientation="portrait" />
  404. <activity
  405. android:name="com.sheep.gamegroup.view.activity.SignRankingsAct"
  406. android:screenOrientation="portrait" />
  407. <activity
  408. android:name="com.sheep.gamegroup.view.activity.SignRecordAct"
  409. android:screenOrientation="portrait" />
  410. <activity
  411. android:name="com.sheep.gamegroup.view.activity.SignRechargeAct"
  412. android:screenOrientation="portrait" />
  413. <activity
  414. android:name="com.sheep.gamegroup.view.activity.ActUserNoviceGuidance"
  415. android:screenOrientation="portrait" />
  416. <activity
  417. android:name="com.sheep.gamegroup.view.activity.ActXiaomiGame"
  418. android:screenOrientation="portrait" />
  419. <activity
  420. android:name="com.sheep.gamegroup.view.activity.ActTestExpression"
  421. android:screenOrientation="portrait" />
  422. <activity
  423. android:name="com.sheep.gamegroup.view.activity.MiddleScreenShotAct"
  424. android:screenOrientation="user"
  425. android:theme="@style/MyDialogActivityTheme" />
  426. <activity
  427. android:name="com.sheep.gamegroup.view.activity.ActPlayVideo"
  428. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  429. android:screenOrientation="user"
  430. android:theme="@style/AppTheme.noTitleBar" />
  431. <activity
  432. android:name="com.sheep.gamegroup.view.activity.ActVideoDetail"
  433. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  434. android:screenOrientation="user"
  435. android:theme="@style/AppTheme.noTitleBar" />
  436. <activity
  437. android:name="com.sheep.gamegroup.view.activity.ActCutVideo"
  438. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  439. android:screenOrientation="portrait"
  440. android:theme="@style/AppTheme.noTitleBar" />
  441. <activity
  442. android:name="com.sheep.gamegroup.module.find.activity.ActEditVideo"
  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:screenOrientation="portrait" />
  577. <activity
  578. android:name="com.sheep.gamegroup.view.activity.RechargeQAct"
  579. android:screenOrientation="portrait" />
  580. <activity
  581. android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
  582. android:screenOrientation="portrait" />
  583. <!-- div end -->
  584. <!-- alipay 支付宝 sdk begin -->
  585. <activity
  586. android:name="com.alipay.sdk.app.H5PayActivity"
  587. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  588. android:exported="false"
  589. android:screenOrientation="behind"
  590. android:windowSoftInputMode="adjustResize|stateHidden" />
  591. <!-- alipay 支付宝 sdk end -->
  592. <!-- 百度定位 sdk start -->
  593. <meta-data
  594. android:name="com.baidu.lbsapi.API_KEY"
  595. android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL" />
  596. <service
  597. android:name="com.baidu.location.f"
  598. android:enabled="true"
  599. android:process=":remote" />
  600. <!-- 百度定位 sdk end -->
  601. <activity
  602. android:name="com.sheep.gamegroup.view.activity.ActNotice"
  603. android:screenOrientation="portrait" />
  604. <activity
  605. android:name="com.sheep.gamegroup.view.activity.ActGuide"
  606. android:screenOrientation="portrait" />
  607. <activity
  608. android:name="com.sheep.gamegroup.view.activity.ActLoadH5"
  609. android:screenOrientation="portrait" />
  610. <activity
  611. android:name="com.sheep.gamegroup.view.activity.ActUserLabelList"
  612. android:screenOrientation="portrait" />
  613. <activity
  614. android:name="com.sheep.gamegroup.view.activity.ActNewAboutUs"
  615. android:screenOrientation="portrait" />
  616. <activity
  617. android:name="com.sheep.gamegroup.view.activity.ActInstallApkList"
  618. android:screenOrientation="portrait" />
  619. <activity
  620. android:name="com.sheep.gamegroup.view.activity.ActSheepApkList"
  621. android:screenOrientation="portrait" />
  622. <activity
  623. android:name="com.sheep.gamegroup.view.activity.ActSheepPngList"
  624. android:screenOrientation="portrait" />
  625. <activity
  626. android:name="com.sheep.gamegroup.view.activity.ActReservation"
  627. android:screenOrientation="portrait" />
  628. <activity
  629. android:name="com.sheep.gamegroup.view.activity.ActGameAgencyRecharge"
  630. android:screenOrientation="portrait" />
  631. <activity
  632. android:name="com.sheep.gamegroup.view.activity.ActGameAccount"
  633. android:screenOrientation="portrait" />
  634. <activity
  635. android:name="com.sheep.gamegroup.view.activity.ActSearchGame"
  636. android:screenOrientation="portrait" />
  637. <activity
  638. android:name="com.sheep.gamegroup.view.activity.ActSetting"
  639. android:screenOrientation="portrait" />
  640. <activity
  641. android:name="com.sheep.gamegroup.view.activity.ActGameCenter"
  642. android:screenOrientation="portrait" />
  643. <activity
  644. android:name="com.sheep.gamegroup.view.activity.ActDownloadWelfareList"
  645. android:screenOrientation="portrait" />
  646. <activity
  647. android:name="com.sheep.gamegroup.view.activity.ActGiftCenter"
  648. android:screenOrientation="portrait" />
  649. <activity
  650. android:name="com.sheep.gamegroup.view.activity.ActMyWelfare"
  651. android:screenOrientation="portrait" />
  652. <activity
  653. android:name="com.sheep.gamegroup.view.activity.MessageInteractionDetailActivity"
  654. android:exported="true" />
  655. <!-- start幂动科技 -->
  656. <activity
  657. android:name="com.sheep.gamegroup.view.activity.ActMiDong"
  658. android:screenOrientation="portrait" />
  659. <service
  660. android:name="com.baidu.location.f"
  661. android:enabled="true"
  662. android:process=":remote" />
  663. <!-- 百度定位 sdk end -->
  664. <!-- <activity -->
  665. <!-- android:name="com.sheep.gamegroup.view.activity.ActFindGame" -->
  666. <!-- android:screenOrientation="portrait" /> -->
  667. <activity
  668. android:name="com.sheep.gamegroup.view.activity.ActArticle"
  669. android:configChanges="orientation|screenSize|keyboardHidden" />
  670. <!-- 小绵羊 3.4.2 合并资讯与资讯评论界面,且默认不显示输入法 -->
  671. <activity
  672. android:name="com.sheep.gamegroup.view.activity.ActArticleComment"
  673. android:configChanges="orientation|keyboardHidden"
  674. android:screenOrientation="portrait"
  675. android:windowSoftInputMode="adjustUnspecified|stateHidden" />
  676. <activity
  677. android:name="com.sheep.gamegroup.view.activity.ActSearchAppOrTask"
  678. android:screenOrientation="portrait" />
  679. <activity
  680. android:name="com.sheep.gamegroup.view.activity.ActSearchApp"
  681. android:screenOrientation="portrait" />
  682. <activity
  683. android:name="com.sheep.gamegroup.view.activity.ActMsg"
  684. android:screenOrientation="portrait" />
  685. <activity
  686. android:name="com.sheep.gamegroup.view.activity.ActGiftDetail"
  687. android:screenOrientation="portrait" />
  688. <activity
  689. android:name="com.sheep.gamegroup.view.activity.ActModifyThird"
  690. android:screenOrientation="portrait" />
  691. <activity
  692. android:name="com.sheep.gamegroup.view.activity.ActPlayGameList"
  693. android:screenOrientation="portrait" />
  694. <activity
  695. android:name="com.sheep.gamegroup.view.activity.ActPlayGameUserLikeList"
  696. android:screenOrientation="portrait" />
  697. <activity
  698. android:name="com.sheep.gamegroup.view.activity.ActPlayGameRecommendList"
  699. android:screenOrientation="portrait" />
  700. <activity
  701. android:name="com.sheep.gamegroup.view.activity.ActGcGameAppDetail"
  702. android:screenOrientation="portrait" />
  703. <activity
  704. android:name="com.sheep.gamegroup.view.activity.ActCommentGameApp"
  705. android:screenOrientation="portrait" />
  706. <activity
  707. android:name="com.sheep.gamegroup.view.activity.ActUserCommentDetail"
  708. android:screenOrientation="portrait" />
  709. <activity
  710. android:name="com.sheep.gamegroup.view.activity.ActUserAppHome"
  711. android:screenOrientation="portrait" />
  712. <activity
  713. android:name="com.sheep.gamegroup.view.activity.ActPlayGameDetail"
  714. android:screenOrientation="portrait" />
  715. <activity
  716. android:name="com.sheep.gamegroup.view.activity.ActSysNfDetail"
  717. android:screenOrientation="portrait" />
  718. <activity
  719. android:name="com.sheep.gamegroup.view.activity.ActInvitation"
  720. android:screenOrientation="portrait" />
  721. <!-- start幂动科技 -->
  722. <service
  723. android:name="com.mdad.sdk.mdsdk.monitor.MonitorService"
  724. android:enabled="true"
  725. android:priority="1000" />
  726. <receiver
  727. android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
  728. android:enabled="true"
  729. android:exported="true">
  730. <intent-filter>
  731. <action android:name="android.intent.action.PACKAGE_ADDED" />
  732. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  733. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  734. <data android:scheme="package" />
  735. </intent-filter>
  736. </receiver>
  737. <receiver
  738. android:name="com.mdad.sdk.mdsdk.DownloadCompleteReceiver"
  739. android:enabled="true"
  740. android:exported="true">
  741. <intent-filter>
  742. <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
  743. <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
  744. </intent-filter>
  745. </receiver>
  746. <!-- end幂动科技 -->
  747. <!-- start 小绵羊sdk相关 -->
  748. <activity
  749. android:name="com.sheep.gamegroup.view.activity.ActPay"
  750. android:exported="true"
  751. android:screenOrientation="user" />
  752. <activity
  753. android:name="com.sheep.gamegroup.view.activity.GameCertificationActivity"
  754. android:exported="true"
  755. android:screenOrientation="portrait" />
  756. <!-- end 小绵羊sdk相关 -->
  757. <!-- 签到 -->
  758. <activity
  759. android:name=".ui.activity.SignActivity"
  760. android:screenOrientation="portrait"
  761. android:theme="@style/AppTheme.NoTitleBar.AlphaStatusBar" />
  762. <!-- 活动规则 -->
  763. <activity
  764. android:name=".ui.activity.ActiveRuleActivity"
  765. android:screenOrientation="portrait" />
  766. <!-- 小绵羊3.4.5 我的关注 -->
  767. <activity
  768. android:name="com.sheep.gamegroup.view.activity.ActMyFocus"
  769. android:screenOrientation="portrait" />
  770. <!-- 小绵羊3.4.5 足迹 -->
  771. <activity
  772. android:name="com.sheep.gamegroup.view.activity.ActFootprint"
  773. android:screenOrientation="portrait" />
  774. <!-- 小绵羊3.4.5 收徒红包 -->
  775. <activity
  776. android:name="com.sheep.gamegroup.view.activity.ActApprenticeRedPacket"
  777. android:screenOrientation="portrait" />
  778. <!-- 小绵羊3.4.5 兑换商城 -->
  779. <activity
  780. android:name="com.sheep.gamegroup.view.activity.ActExchangeMall"
  781. android:screenOrientation="portrait" />
  782. <!-- 小绵羊3.4.5 每日分享 -->
  783. <activity
  784. android:name="com.sheep.gamegroup.view.activity.ActEveryDayShare"
  785. android:screenOrientation="portrait" />
  786. <!-- 小绵羊3.4.5 娱乐抽奖 -->
  787. <activity
  788. android:name="com.sheep.gamegroup.view.activity.ActEntertainmentLuckDraw"
  789. android:screenOrientation="portrait" />
  790. <!-- 小绵羊3.4.5 金币中心 -->
  791. <activity
  792. android:name="com.sheep.gamegroup.view.activity.ActCoinCenter"
  793. android:screenOrientation="portrait" />
  794. <!-- 小绵羊3.4.5 发布发现内容 -->
  795. <activity
  796. android:name="com.sheep.gamegroup.view.activity.ActPublishArticle"
  797. android:screenOrientation="portrait" />
  798. <!-- 小绵羊3.4.5 选择图片与视频 -->
  799. <activity
  800. android:name="com.sheep.gamegroup.module.find.activity.ActMediaChoose"
  801. android:screenOrientation="portrait" />
  802. <activity
  803. android:name="com.sheep.gamegroup.module.login.LoginAct"
  804. android:screenOrientation="portrait"
  805. android:theme="@style/AppActionTheme"></activity>
  806. <activity
  807. android:name="com.sheep.gamegroup.module.login.ChangePasswordAct"
  808. android:screenOrientation="portrait"
  809. android:theme="@style/AppActionTheme" />
  810. <activity
  811. android:name="com.sheep.gamegroup.module.login.ReLoginNameAct"
  812. android:screenOrientation="portrait"
  813. android:theme="@style/AppActionTheme"></activity>
  814. </application>
  815. </manifest>