AndroidManifest.xml 50 KB

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