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