AndroidManifest.xml 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046
  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.ActYf"
  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/AppActionTheme" />
  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.view.activity.ActBindMobileRegister"
  291. android:launchMode="singleTask"
  292. android:screenOrientation="portrait"
  293. android:theme="@style/AppActionTheme" />
  294. <activity
  295. android:name="com.sheep.gamegroup.view.activity.TaskDetailAct"
  296. android:screenOrientation="portrait"
  297. android:theme="@style/AppActionTheme" />
  298. <activity
  299. android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
  300. android:theme="@style/MyDialogActivityTheme" />
  301. <activity
  302. android:name="com.sheep.gamegroup.view.activity.ActMain"
  303. android:configChanges="keyboardHidden|screenSize|orientation"
  304. android:exported="true"
  305. android:hardwareAccelerated="true"
  306. android:launchMode="singleTask"
  307. android:screenOrientation="portrait"
  308. android:theme="@style/AppTheme"
  309. android:windowSoftInputMode="adjustPan|stateHidden">
  310. <intent-filter>
  311. <category android:name="android.intent.category.DEFAULT" />
  312. <action android:name="android.intent.action.VIEW" />
  313. </intent-filter>
  314. </activity>
  315. <activity
  316. android:name="com.sheep.gamegroup.view.activity.AskGetMoneyAct"
  317. android:screenOrientation="portrait"
  318. android:theme="@style/AppActionTheme" />
  319. <activity
  320. android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
  321. android:screenOrientation="portrait"
  322. android:theme="@style/AppActionTheme" />
  323. <activity
  324. android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
  325. android:hardwareAccelerated="false"
  326. android:screenOrientation="portrait"
  327. android:theme="@style/AppActionTheme" />
  328. <!-- <provider -->
  329. <!-- android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider" -->
  330. <!-- android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}" -->
  331. <!-- android:exported="true" /> -->
  332. <receiver android:name="com.sheep.gamegroup.receiver.AppAddOrDelReceiver">
  333. <intent-filter>
  334. <action android:name="android.intent.action.PACKAGE_ADDED" />
  335. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  336. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  337. <data android:scheme="package" />
  338. </intent-filter>
  339. </receiver>
  340. <activity
  341. android:name="com.tencent.tauth.AuthActivity"
  342. android:launchMode="singleTask"
  343. android:noHistory="true">
  344. <intent-filter>
  345. <action android:name="android.intent.action.VIEW" />
  346. <category android:name="android.intent.category.DEFAULT" />
  347. <category android:name="android.intent.category.BROWSABLE" />
  348. <data android:scheme="tencent101461115" />
  349. </intent-filter>
  350. </activity>
  351. <activity
  352. android:name="com.tencent.connect.common.AssistActivity"
  353. android:configChanges="orientation|keyboardHidden|screenSize"
  354. android:screenOrientation="portrait" />
  355. <activity
  356. android:name="com.sheep.gamegroup.view.activity.CommitWxAct"
  357. android:screenOrientation="portrait"
  358. android:theme="@style/AppActionTheme"
  359. android:windowSoftInputMode="stateVisible|adjustPan" />
  360. <activity
  361. android:name="com.sheep.gamegroup.view.activity.ActGuideOnHook"
  362. android:screenOrientation="portrait"
  363. android:theme="@style/AppActionTheme" />
  364. <activity
  365. android:name="com.sheep.gamegroup.view.activity.CommitWxCodeAct"
  366. android:screenOrientation="portrait"
  367. android:theme="@style/AppActionTheme"
  368. android:windowSoftInputMode="stateVisible|adjustPan" />
  369. <activity
  370. android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
  371. android:screenOrientation="portrait"
  372. android:theme="@style/AppActionTheme" />
  373. <activity
  374. android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
  375. android:screenOrientation="portrait"
  376. android:theme="@style/AppActionTheme" />
  377. <activity
  378. android:name="com.sheep.gamegroup.view.activity.ChangeWxOrTelAct"
  379. android:screenOrientation="portrait"
  380. android:theme="@style/AppActionTheme" />
  381. <activity
  382. android:name="com.sheep.gamegroup.view.activity.ReNameActivity"
  383. android:screenOrientation="portrait"
  384. android:theme="@style/AppActionTheme"
  385. android:windowSoftInputMode="stateVisible|adjustPan" />
  386. <activity
  387. android:name="me.iwf.photopicker.PhotoPickerActivity"
  388. android:screenOrientation="portrait"
  389. android:theme="@style/Theme.AppCompat.NoActionBar" />
  390. <activity
  391. android:name="me.iwf.photopicker.PhotoPagerActivity"
  392. android:screenOrientation="portrait"
  393. android:theme="@style/Theme.AppCompat.NoActionBar" />
  394. <activity
  395. android:name="com.yalantis.ucrop.UCropActivity"
  396. android:screenOrientation="portrait"
  397. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  398. <activity
  399. android:name="com.sheep.gamegroup.view.activity.ActNewbieTaskList"
  400. android:screenOrientation="portrait"
  401. android:theme="@style/AppActionTheme" />
  402. <activity
  403. android:name="com.sheep.gamegroup.view.activity.ActUnderstandSheep"
  404. android:screenOrientation="portrait"
  405. android:theme="@style/AppActionTheme" />
  406. <activity
  407. android:name="com.sheep.gamegroup.view.activity.ActCreditCardTaskList"
  408. android:screenOrientation="portrait"
  409. android:theme="@style/AppActionTheme" />
  410. <activity
  411. android:name="com.sheep.gamegroup.view.activity.ActCreditCardWeb"
  412. android:screenOrientation="portrait"
  413. android:theme="@style/AppActionTheme" />
  414. <activity
  415. android:name="com.sheep.gamegroup.view.activity.ActXianWanWeb"
  416. android:screenOrientation="portrait"
  417. android:theme="@style/AppActionTheme" />
  418. <activity
  419. android:name="com.sheep.gamegroup.view.activity.TaskDetailCreditCardAct"
  420. android:screenOrientation="portrait"
  421. android:theme="@style/AppActionTheme" />
  422. <activity
  423. android:name="com.sheep.gamegroup.view.activity.TaskDetailAddQQAct"
  424. android:screenOrientation="portrait"
  425. android:theme="@style/AppActionTheme" />
  426. <activity
  427. android:name="com.sheep.gamegroup.view.activity.ActWebX5"
  428. android:screenOrientation="portrait"
  429. android:theme="@style/AppActionTheme" />
  430. <activity
  431. android:name="com.sheep.gamegroup.view.activity.ActWebX5YF"
  432. android:screenOrientation="portrait"
  433. android:theme="@style/AppActionTheme" >
  434. <intent-filter>
  435. <action android:name="android.intent.action.MAIN" />
  436. <category android:name="android.intent.category.DEFAULT" />
  437. </intent-filter>
  438. </activity>
  439. <activity
  440. android:name="com.sheep.gamegroup.view.activity.ActWebX5SBD"
  441. android:screenOrientation="portrait"
  442. android:theme="@style/AppActionTheme" >
  443. <intent-filter>
  444. <action android:name="android.intent.action.MAIN" />
  445. <category android:name="android.intent.category.DEFAULT" />
  446. </intent-filter>
  447. </activity>
  448. <activity
  449. android:name="com.sheep.gamegroup.view.activity.ActImg"
  450. android:screenOrientation="portrait"
  451. android:theme="@style/AppActionTheme" />
  452. <activity
  453. android:name="com.sheep.gamegroup.view.activity.ActMyMoney"
  454. android:screenOrientation="portrait"
  455. android:theme="@style/AppActionTheme" />
  456. <activity
  457. android:name="com.sheep.gamegroup.view.activity.NewYearActMyMoney"
  458. android:screenOrientation="portrait"
  459. android:theme="@style/AppActionTheme" />
  460. <activity
  461. android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
  462. android:screenOrientation="portrait"
  463. android:theme="@style/AppActionTheme" />
  464. <activity
  465. android:name="com.sheep.gamegroup.view.activity.ActSignCard"
  466. android:screenOrientation="portrait"
  467. android:theme="@style/AppActionTheme" />
  468. <activity
  469. android:name="com.sheep.gamegroup.view.activity.ActSignCardRecord"
  470. android:screenOrientation="portrait"
  471. android:theme="@style/AppActionTheme" />
  472. <activity
  473. android:name="com.sheep.gamegroup.view.activity.SignCardAct"
  474. android:screenOrientation="portrait"
  475. android:theme="@style/AppActionTheme" />
  476. <activity
  477. android:name="com.sheep.gamegroup.view.activity.SignRankingsAct"
  478. android:screenOrientation="portrait"
  479. android:theme="@style/AppActionTheme" />
  480. <activity
  481. android:name="com.sheep.gamegroup.view.activity.SignRecordAct"
  482. android:screenOrientation="portrait"
  483. android:theme="@style/AppActionTheme" />
  484. <activity
  485. android:name="com.sheep.gamegroup.view.activity.ActUserNoviceGuidance"
  486. android:screenOrientation="portrait"
  487. android:theme="@style/AppActionTheme" />
  488. <activity
  489. android:name="com.sheep.gamegroup.view.activity.ActXiaomiGame"
  490. android:screenOrientation="portrait"
  491. android:theme="@style/AppActionTheme" />
  492. <activity
  493. android:name="com.sheep.gamegroup.view.activity.ActTestExpression"
  494. android:screenOrientation="portrait"
  495. android:theme="@style/AppActionTheme" />
  496. <activity
  497. android:name="com.sheep.gamegroup.view.activity.MiddleScreenShotAct"
  498. android:screenOrientation="user"
  499. android:theme="@style/MyDialogActivityTheme" />
  500. <activity
  501. android:name="com.sheep.gamegroup.view.activity.ActPlayVideo"
  502. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  503. android:screenOrientation="user"
  504. android:theme="@style/AppTheme.noTitleBar" />
  505. <activity
  506. android:name="com.sheep.gamegroup.view.activity.ActVideoDetail"
  507. android:configChanges="orientation|keyboardHidden|navigation|screenSize"
  508. android:screenOrientation="user"
  509. android:theme="@style/AppTheme.noTitleBar" />
  510. <activity
  511. android:name="com.sheep.gamegroup.view.activity.ActInputAndPickerImg"
  512. android:theme="@style/AppTheme.translucent" />
  513. <activity
  514. android:name="com.sheep.gamegroup.view.activity.ActVideoComment"
  515. android:theme="@style/AppTheme.fullTranslucent" />
  516. <!-- 友盟start -->
  517. <meta-data
  518. android:name="UMENG_APPKEY"
  519. android:value="${umeng_app_key}" />
  520. <meta-data
  521. android:name="UMENG_CHANNEL"
  522. android:value="xxx" />
  523. <!-- 极光推送 -->
  524. <!-- For test only 测试状态通知栏,需要打开的Activity -->
  525. <activity
  526. android:name="com.sheep.gamegroup.view.activity.MiddleAct"
  527. android:exported="false">
  528. <intent-filter>
  529. <action android:name="jpush.testAction" />
  530. <category android:name="jpush.testCategory" />
  531. </intent-filter>
  532. </activity>
  533. <!-- Rich push 核心功能 since 2.0.6 -->
  534. <activity
  535. android:name="cn.jpush.android.ui.PopWinActivity"
  536. android:exported="false"
  537. android:theme="@style/MyDialogStyle" />
  538. <!-- Required SDK核心功能 -->
  539. <activity
  540. android:name="cn.jpush.android.ui.PushActivity"
  541. android:configChanges="orientation|keyboardHidden"
  542. android:exported="false"
  543. android:theme="@android:style/Theme.NoTitleBar">
  544. <intent-filter>
  545. <action android:name="cn.jpush.android.ui.PushActivity" />
  546. <category android:name="android.intent.category.DEFAULT" />
  547. <category android:name="${applicationId}" />
  548. </intent-filter>
  549. </activity>
  550. <!-- Required SDK 核心功能 -->
  551. <!-- 可配置android:process参数将PushService放在其他进程中 -->
  552. <service
  553. android:name="cn.jpush.android.service.PushService"
  554. android:exported="false"
  555. android:process=":mult">
  556. <intent-filter>
  557. <action android:name="cn.jpush.android.intent.REGISTER" />
  558. <action android:name="cn.jpush.android.intent.REPORT" />
  559. <action android:name="cn.jpush.android.intent.PushService" />
  560. <action android:name="cn.jpush.android.intent.PUSH_TIME" />
  561. </intent-filter>
  562. </service>
  563. <!-- since 3.0.9 Required SDK 核心功能 -->
  564. <provider
  565. android:name="cn.jpush.android.service.DataProvider"
  566. android:authorities="${applicationId}.DataProvider"
  567. android:exported="false" />
  568. <!-- since 1.8.0 option 可选项。用于同一设备中不同应用的JPush服务相互拉起的功能。 -->
  569. <!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
  570. <service
  571. android:name="cn.jpush.android.service.DaemonService"
  572. android:enabled="true"
  573. android:exported="true">
  574. <intent-filter>
  575. <action android:name="cn.jpush.android.intent.DaemonService" />
  576. <category android:name="${applicationId}" />
  577. </intent-filter>
  578. </service>
  579. <!-- since 3.1.0 Required SDK 核心功能 -->
  580. <provider
  581. android:name="cn.jpush.android.service.DownloadProvider"
  582. android:authorities="${applicationId}.DownloadProvider"
  583. android:exported="true" />
  584. <!-- Required SDK核心功能 -->
  585. <receiver
  586. android:name="cn.jpush.android.service.PushReceiver"
  587. android:enabled="true"
  588. android:exported="false">
  589. <intent-filter android:priority="1000">
  590. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <!-- Required 显示通知栏 -->
  591. <category android:name="${applicationId}" />
  592. </intent-filter>
  593. <intent-filter>
  594. <action android:name="android.intent.action.USER_PRESENT" />
  595. <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
  596. </intent-filter>
  597. <!-- Optional -->
  598. <intent-filter>
  599. <action android:name="android.intent.action.PACKAGE_ADDED" />
  600. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  601. <data android:scheme="package" />
  602. </intent-filter>
  603. </receiver>
  604. <!-- Required SDK核心功能 -->
  605. <receiver
  606. android:name="cn.jpush.android.service.AlarmReceiver"
  607. android:exported="false" />
  608. <!-- User defined. For test only 用户自定义的广播接收器 -->
  609. <receiver
  610. android:name="com.sheep.gamegroup.receiver.SheepJpushReceiver"
  611. android:enabled="true"
  612. android:exported="false">
  613. <intent-filter>
  614. <action android:name="cn.jpush.android.intent.REGISTRATION" /> <!-- Required 用户注册SDK的intent -->
  615. <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" /> <!-- Required 用户接收SDK消息的intent -->
  616. <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" /> <!-- Required 用户接收SDK通知栏信息的intent -->
  617. <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" /> <!-- Required 用户打开自定义通知栏的intent -->
  618. <action android:name="cn.jpush.android.intent.CONNECTION" /> <!-- 接收网络变化 连接/断开 since 1.6.3 -->
  619. <category android:name="${applicationId}" />
  620. </intent-filter>
  621. </receiver>
  622. <!-- User defined. For test only 用户自定义接收消息器,3.0.7开始支持,目前新tag/alias接口设置结果会在该广播接收器对应的方法中回调 -->
  623. <receiver android:name="com.sheep.gamegroup.receiver.SheepJpushMessageReceiver">
  624. <intent-filter>
  625. <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
  626. <category android:name="${applicationId}" />
  627. </intent-filter>
  628. </receiver>
  629. <!-- Required . Enable it you can get statistics data with channel -->
  630. <meta-data
  631. android:name="JPUSH_CHANNEL"
  632. android:value="developer-default" />
  633. <meta-data
  634. android:name="JPUSH_APPKEY"
  635. android:value="${jpush_appkey}" /> <!-- </>值来自开发者平台取得的AppKey -->
  636. <!-- 极光推送end -->
  637. <!-- div start -->
  638. <activity
  639. android:name="com.sheep.gamegroup.view.activity.RechargeAct"
  640. android:exported="true"
  641. android:screenOrientation="portrait"
  642. android:theme="@style/AppActionTheme" />
  643. <activity
  644. android:name="com.sheep.gamegroup.view.activity.RechargeQAct"
  645. android:screenOrientation="portrait"
  646. android:theme="@style/AppActionTheme" />
  647. <activity
  648. android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
  649. android:launchMode="singleTask"
  650. android:screenOrientation="portrait"
  651. android:theme="@style/AppActionTheme" />
  652. <!-- div end -->
  653. <!-- alipay 支付宝 sdk end -->
  654. <!-- 百度定位 sdk start -->
  655. <meta-data
  656. android:name="com.baidu.lbsapi.API_KEY"
  657. android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL" />
  658. <service
  659. android:name="com.baidu.location.f"
  660. android:enabled="true"
  661. android:process=":remote" />
  662. <!-- 百度定位 sdk end -->
  663. <activity
  664. android:name="com.sheep.gamegroup.view.activity.ActNotice"
  665. android:screenOrientation="portrait"
  666. android:theme="@style/AppActionTheme" />
  667. <activity
  668. android:name="com.sheep.gamegroup.view.activity.ActGuide"
  669. android:screenOrientation="portrait"
  670. android:theme="@style/AppActionTheme" />
  671. <activity
  672. android:name="com.sheep.gamegroup.view.activity.ActLoadH5"
  673. android:screenOrientation="portrait"
  674. android:theme="@style/AppActionTheme" />
  675. <activity
  676. android:name="com.sheep.gamegroup.view.activity.ActUserLabelList"
  677. android:screenOrientation="portrait"
  678. android:theme="@style/AppActionTheme" />
  679. <activity
  680. android:name="com.sheep.gamegroup.view.activity.ActNewAboutUs"
  681. android:screenOrientation="portrait"
  682. android:theme="@style/AppActionTheme" />
  683. <activity
  684. android:name="com.sheep.gamegroup.view.activity.ActInstallApkList"
  685. android:screenOrientation="portrait"
  686. android:theme="@style/AppActionTheme" />
  687. <activity
  688. android:name="com.sheep.gamegroup.view.activity.ActSheepApkList"
  689. android:screenOrientation="portrait"
  690. android:theme="@style/AppActionTheme" />
  691. <activity
  692. android:name="com.sheep.gamegroup.view.activity.ActSheepPngList"
  693. android:screenOrientation="portrait"
  694. android:theme="@style/AppActionTheme" />
  695. <activity
  696. android:name="com.sheep.gamegroup.view.activity.ActReservation"
  697. android:screenOrientation="portrait"
  698. android:theme="@style/AppActionTheme" />
  699. <activity
  700. android:name="com.sheep.gamegroup.view.activity.ActGameAgencyRecharge"
  701. android:screenOrientation="portrait"
  702. android:theme="@style/AppActionTheme" />
  703. <activity
  704. android:name="com.sheep.gamegroup.view.activity.ActGameAccount"
  705. android:screenOrientation="portrait"
  706. android:theme="@style/AppActionTheme" />
  707. <activity
  708. android:name="com.sheep.gamegroup.view.activity.ActSearchGame"
  709. android:screenOrientation="portrait"
  710. android:theme="@style/AppActionTheme" />
  711. <activity
  712. android:name="com.sheep.gamegroup.view.activity.ActSetting"
  713. android:screenOrientation="portrait"
  714. android:theme="@style/AppActionTheme" />
  715. <activity
  716. android:name="com.sheep.gamegroup.view.activity.ActGameCenter"
  717. android:screenOrientation="portrait"
  718. android:theme="@style/AppActionTheme" />
  719. <activity
  720. android:name="com.sheep.gamegroup.view.activity.ActDownloadWelfareList"
  721. android:screenOrientation="portrait"
  722. android:theme="@style/AppActionTheme" />
  723. <activity
  724. android:name="com.sheep.gamegroup.view.activity.ActGiftCenter"
  725. android:screenOrientation="portrait"
  726. android:theme="@style/AppActionTheme" />
  727. <activity
  728. android:name="com.sheep.gamegroup.view.activity.ActMyWelfare"
  729. android:screenOrientation="portrait"
  730. android:theme="@style/AppActionTheme" />
  731. <activity
  732. android:name="com.sheep.gamegroup.view.activity.MessageInteractionDetailActivity"
  733. android:exported="true"
  734. android:theme="@style/AppActionTheme" />
  735. <!-- start幂动科技 -->
  736. <activity
  737. android:name="com.sheep.gamegroup.view.activity.ActMiDong"
  738. android:screenOrientation="portrait"
  739. android:theme="@style/AppActionTheme" />
  740. <service
  741. android:name="com.baidu.location.f"
  742. android:enabled="true"
  743. android:process=":remote" />
  744. <!-- 百度定位 sdk end -->
  745. <!-- <activity -->
  746. <!-- android:name="com.sheep.gamegroup.view.activity.ActFindGame" -->
  747. <!-- android:screenOrientation="portrait" /> -->
  748. <activity
  749. android:name="com.sheep.gamegroup.view.activity.ActArticle"
  750. android:configChanges="orientation|screenSize|keyboardHidden" />
  751. <!-- 小绵羊 3.4.2 合并资讯与资讯评论界面,且默认不显示输入法 -->
  752. <activity
  753. android:name="com.sheep.gamegroup.view.activity.ActArticleComment"
  754. android:configChanges="orientation|keyboardHidden"
  755. android:screenOrientation="portrait"
  756. android:theme="@style/AppActionTheme"
  757. android:windowSoftInputMode="adjustUnspecified|stateHidden" />
  758. <activity
  759. android:name="com.sheep.gamegroup.view.activity.ActSearchAppOrTask"
  760. android:screenOrientation="portrait"
  761. android:theme="@style/AppActionTheme" />
  762. <activity
  763. android:name="com.sheep.gamegroup.view.activity.ActSearchApp"
  764. android:screenOrientation="portrait"
  765. android:theme="@style/AppActionTheme" />
  766. <activity
  767. android:name="com.sheep.gamegroup.view.activity.ActMsg"
  768. android:screenOrientation="portrait"
  769. android:theme="@style/AppActionTheme" />
  770. <activity
  771. android:name="com.sheep.gamegroup.view.activity.ActGiftDetail"
  772. android:screenOrientation="portrait"
  773. android:theme="@style/AppActionTheme" />
  774. <activity
  775. android:name="com.sheep.gamegroup.view.activity.ActModifyThird"
  776. android:screenOrientation="portrait"
  777. android:theme="@style/AppActionTheme" />
  778. <activity
  779. android:name="com.sheep.gamegroup.view.activity.ActPlayGameList"
  780. android:screenOrientation="portrait"
  781. android:theme="@style/AppActionTheme" />
  782. <activity
  783. android:name="com.sheep.gamegroup.view.activity.ActPlayGameUserLikeList"
  784. android:screenOrientation="portrait"
  785. android:theme="@style/AppActionTheme" />
  786. <activity
  787. android:name="com.sheep.gamegroup.view.activity.ActPlayGameRecommendList"
  788. android:screenOrientation="portrait"
  789. android:theme="@style/AppActionTheme" />
  790. <activity
  791. android:name="com.sheep.gamegroup.view.activity.ActGcGameAppDetail"
  792. android:screenOrientation="portrait" />
  793. <activity
  794. android:name="com.sheep.gamegroup.view.activity.ActCommentGameApp"
  795. android:screenOrientation="portrait"
  796. android:theme="@style/AppActionTheme" />
  797. <activity
  798. android:name="com.sheep.gamegroup.view.activity.ActUserCommentDetail"
  799. android:screenOrientation="portrait"
  800. android:theme="@style/AppActionTheme" />
  801. <activity
  802. android:name="com.sheep.gamegroup.view.activity.ActUserAppHome"
  803. android:screenOrientation="portrait" />
  804. <activity
  805. android:name="com.sheep.gamegroup.view.activity.ActSysNfDetail"
  806. android:screenOrientation="portrait"
  807. android:theme="@style/AppActionTheme" />
  808. <activity
  809. android:name="com.sheep.gamegroup.view.activity.ActInvitation"
  810. android:screenOrientation="portrait"
  811. android:theme="@style/AppActionTheme" />
  812. <!-- start幂动科技 -->
  813. <service
  814. android:name="com.mdad.sdk.mdsdk.monitor.MonitorService"
  815. android:enabled="true"
  816. android:priority="1000" />
  817. <receiver
  818. android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
  819. android:enabled="true"
  820. android:exported="true">
  821. <intent-filter>
  822. <action android:name="android.intent.action.PACKAGE_ADDED" />
  823. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  824. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  825. <data android:scheme="package" />
  826. </intent-filter>
  827. </receiver>
  828. <receiver
  829. android:name="com.mdad.sdk.mdsdk.DownloadCompleteReceiver"
  830. android:enabled="true"
  831. android:exported="true">
  832. <intent-filter>
  833. <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
  834. <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
  835. </intent-filter>
  836. </receiver>
  837. <!-- end幂动科技 -->
  838. <!-- start 小绵羊sdk相关 -->
  839. <activity
  840. android:name="com.sheep.gamegroup.view.activity.ActPay"
  841. android:exported="true"
  842. android:launchMode="singleInstance"
  843. android:screenOrientation="user"
  844. android:theme="@style/AppTheme.translucent" />
  845. <activity
  846. android:name="com.sheep.gamegroup.view.activity.GameCertificationActivity"
  847. android:exported="true"
  848. android:screenOrientation="portrait"
  849. android:theme="@style/AppActionTheme" />
  850. <!-- end 小绵羊sdk相关 -->
  851. <!-- 签到 -->
  852. <activity
  853. android:name=".ui.activity.SignActivity"
  854. android:screenOrientation="portrait"
  855. android:theme="@style/AppActionTheme" />
  856. <!-- 活动规则 -->
  857. <activity
  858. android:name=".ui.activity.ActiveRuleActivity"
  859. android:screenOrientation="portrait"
  860. android:theme="@style/AppActionTheme" />
  861. <!-- 小绵羊3.4.5 我的关注 -->
  862. <activity
  863. android:name="com.sheep.gamegroup.view.activity.ActMyFocus"
  864. android:screenOrientation="portrait"
  865. android:theme="@style/AppActionTheme" />
  866. <!-- 小绵羊3.4.5 足迹 -->
  867. <activity
  868. android:name="com.sheep.gamegroup.view.activity.ActFootprint"
  869. android:screenOrientation="portrait"
  870. android:theme="@style/AppActionTheme" />
  871. <!-- 小绵羊3.4.5 收徒红包 -->
  872. <activity
  873. android:name="com.sheep.gamegroup.view.activity.ActApprenticeRedPacket"
  874. android:screenOrientation="portrait"
  875. android:theme="@style/AppActionTheme" />
  876. <!-- 小绵羊3.4.5 兑换商城 -->
  877. <activity
  878. android:name="com.sheep.gamegroup.view.activity.ActExchangeMall"
  879. android:screenOrientation="portrait"
  880. android:theme="@style/AppActionTheme" />
  881. <!-- 小绵羊3.4.5 每日分享 -->
  882. <activity
  883. android:name="com.sheep.gamegroup.view.activity.ActEveryDayShare"
  884. android:screenOrientation="portrait"
  885. android:theme="@style/AppActionTheme" />
  886. <!-- 小绵羊3.4.5 娱乐抽奖 -->
  887. <activity
  888. android:name="com.sheep.gamegroup.view.activity.ActEntertainmentLuckDraw"
  889. android:screenOrientation="portrait"
  890. android:theme="@style/AppActionTheme" />
  891. <!-- 小绵羊3.4.5 金币中心 -->
  892. <activity
  893. android:name="com.sheep.gamegroup.view.activity.ActCoinCenter"
  894. android:screenOrientation="portrait"
  895. android:theme="@style/AppActionTheme" />
  896. <!-- 小绵羊3.4.5 发布发现内容 -->
  897. <activity
  898. android:name="com.sheep.gamegroup.view.activity.ActPublishArticle"
  899. android:screenOrientation="portrait"
  900. android:theme="@style/AppActionTheme" />
  901. <!-- 小绵羊3.4.5 选择图片与视频 -->
  902. <activity
  903. android:name="com.sheep.gamegroup.module.find.activity.ActMediaChoose"
  904. android:screenOrientation="portrait"
  905. android:theme="@style/AppActionTheme" />
  906. <activity
  907. android:name="com.sheep.gamegroup.module.login.LoginAct"
  908. android:launchMode="singleTask"
  909. android:screenOrientation="portrait"
  910. android:theme="@style/AppActionTheme" />
  911. <activity
  912. android:name="com.sheep.gamegroup.module.login.ChangePasswordAct"
  913. android:screenOrientation="portrait"
  914. android:theme="@style/AppActionTheme" />
  915. <activity
  916. android:name="com.sheep.gamegroup.module.login.ReLoginNameAct"
  917. android:screenOrientation="portrait"
  918. android:theme="@style/AppActionTheme" />
  919. <!-- 小绵羊3.4.7 新增界面 -->
  920. <activity
  921. android:name="com.sheep.gamegroup.module.user.activity.ActVip"
  922. android:screenOrientation="portrait"
  923. android:theme="@style/AppActionTheme" />
  924. <activity
  925. android:name="com.sheep.gamegroup.module.game.activity.ActMyGameList"
  926. android:screenOrientation="portrait"
  927. android:theme="@style/AppActionTheme" />
  928. <!-- 小绵羊3.4.10 新增界面 -->
  929. <activity
  930. android:name="com.sheep.gamegroup.module.game.activity.ActGameGroupMore"
  931. android:screenOrientation="portrait"
  932. android:theme="@style/AppActionTheme" />
  933. <activity
  934. android:name="com.sheep.gamegroup.module.game.activity.ActDownloadManager"
  935. android:screenOrientation="portrait"
  936. android:theme="@style/AppActionTheme" />
  937. <activity
  938. android:name="com.sheep.gamegroup.module.game.activity.ActGameCenterType"
  939. android:screenOrientation="portrait"
  940. android:theme="@style/AppActionTheme" />
  941. <activity
  942. android:name="com.sheep.gamegroup.module.game.activity.ActGameRank"
  943. android:screenOrientation="portrait"
  944. android:theme="@style/AppActionTheme" />
  945. <activity
  946. android:name="com.sheep.gamegroup.module.game.activity.ActSearchGameGroup"
  947. android:screenOrientation="portrait"
  948. android:theme="@style/AppActionTheme" />
  949. <activity
  950. android:name="com.sheep.gamegroup.module.game.activity.ActGameGroupOrGameDetail"
  951. android:screenOrientation="portrait"
  952. android:theme="@style/AppActionTheme" />
  953. <activity
  954. android:name="com.sheep.gamegroup.module.find.activity.ActFind"
  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>