AndroidManifest.xml 52 KB

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