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