AndroidManifest.xml 48 KB

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