AndroidManifest.xml 53 KB

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