AndroidManifest.xml 48 KB

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