AndroidManifest.xml 53 KB

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