| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="com.sheep.jiuyan.samllsheep">
- <!-- 极光推送 -->
- <!-- Required -->
- <permission android:name="${applicationId}.permission.JPUSH_MESSAGE" android:protectionLevel="signature"/> <!-- Required 一些系统要求的权限,如访问网络等 -->
- <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT"/>
- <uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.WAKE_LOCK"/>
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
- <uses-permission android:name="android.permission.READ_PHONE_STATE"/> <!-- 写入扩展存储,向扩展卡写入数据,用于写入离线定位数据 -->
- <uses-permission android:name="android.permission.WRITE_SETTINGS" tools:ignore="ProtectedPermissions"/>
- <uses-permission android:name="android.permission.VIBRATE"/>
- <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" tools:ignore="ProtectedPermissions"/>
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <!-- Optional for location -->
- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <!-- 用于开启 debug 版本的应用在6.0 系统上 层叠窗口权限 -->
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/><!-- 这个权限用于访问GPS定位 -->
- <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/><!-- 用于访问wifi网络信息,wifi信息会用于进行网络定位 -->
- <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
- <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/> <!-- 极光推送end -->
- <uses-permission android:name="android.permission.CAMERA"/>
- <uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW"/>
- <uses-permission android:name="android.permission.REQUEST_MEDIA_PROJECTION"/>
- <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" tools:ignore="ProtectedPermissions"/>
- <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/> <!-- 必须的权限配置 -->
- <uses-permission android:name="android.permission.READ_LOGS" tools:ignore="ProtectedPermissions"/> <!-- 保存资源到SD卡 -->
- <!-- 添加如下权限,以便使用更多的第三方SDK和更精准的统计数据 -->
- <uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>
- <uses-permission android:name="android.permission.ACCESS_SUPERUSER"/> <!-- 百度定位权限 start -->
- <uses-permission android:name="android.permission.RECORD_AUDIO"/>
- <uses-permission android:name="android.permission.READ_CONTACTS"/> <!-- 写联系人权限 -->
- <uses-permission android:name="android.permission.WRITE_CONTACTS"/> <!-- 读通话记录权限 -->
- <uses-permission android:name="android.permission.WRITE_CALL_LOG"/>
- <uses-permission android:name="android.permission.READ_CALL_LOG"/>
- <!--华硕设备必须-->
- <uses-permission android:name="com.asus.msa.SupplementaryDID.ACCESS"/>
- <uses-feature android:name="android.hardware.camera"/>
- <uses-feature android:name="android.hardware.camera.autofocus"/>
- <uses-sdk
- android:targetSdkVersion="30"
- tools:overrideLibrary="com.bun.miitmdid"
- tools:ignore="GradleOverrides"/>
- <permission
- android:name="android.permission.FLASHLIGHT"
- android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
- android:protectionLevel="normal"/>
- <application
- android:name=".SheepApp"
- android:allowBackup="true"
- android:fullBackupContent="@xml/backup_descriptor"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:largeHeap="true"
- android:hardwareAccelerated="true"
- android:networkSecurityConfig="@xml/network_security_config"
- android:persistent="true"
- android:supportsRtl="true"
- android:theme="@style/AppTheme"
- android:usesCleartextTraffic="true">
- <activity
- android:name="com.sheep.gamegroup.module.task.VideoTaskActivity"
- android:configChanges="keyboardHidden|navigation|orientation|screenSize"
- android:screenOrientation="portrait"
- android:theme="@style/AppThemeMain"/>
- <activity
- android:name="com.sheep.gamegroup.module.qrcode.ScanQRCodeActivity"
- android:configChanges="keyboardHidden|navigation|orientation|screenSize"
- android:screenOrientation="portrait"
- android:theme="@style/AppThemeMain"/>
- <service
- android:name=".service.SyncCheckService"
- android:enabled="true"
- android:exported="true">
- <intent-filter>
- <action android:name="com.sheep.jiuyan.samllsheep.CheckSync"/>
- </intent-filter>
- </service>
- <!--<meta-data-->
- <!--android:name="com.sheep.jiuyan.samllsheep.utils.GlideAppModuleModule"-->
- <!--android:value="AppGlideModule" />-->
- <meta-data
- android:name="design_width_in_dp"
- android:value="375"/>
- <meta-data
- android:name="design_height_in_dp"
- android:value="667"/>
- <uses-library
- android:name="org.apache.http.legacy"
- android:required="false"/>
- <activity
- android:name=".wxutil.WXUmengEntryActivity"
- android:exported="true"
- android:launchMode="singleTop"/>
- <receiver android:name="com.sheep.gamegroup.util.ProcessEventBroadCastReceiver" android:enabled="true" android:exported="true">
- <intent-filter>
- <action android:name="flag">
- </action>
- </intent-filter>
- </receiver>
- <activity
- android:name=".wxapi.WXEntryActivity"
- android:configChanges="keyboardHidden|navigation|orientation|screenSize"
- android:exported="true"
- android:launchMode="singleTask"/>
- <activity
- android:name="com.ipaynow.plugin.inner_plugin.miniprogram.activity.MiniProgramPayActivity"
- android:configChanges="keyboardHidden|navigation|orientation|screenSize"
- android:launchMode="singleTask"
- android:screenOrientation="behind"
- android:theme="@android:style/Theme.Dialog"/>
- <activity
- android:name=".wxapi.WXPayEntryActivity"
- android:exported="true"
- android:launchMode="singleTop"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.WebviewAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <service android:name=".service.DownloadService"/>
- <service
- android:name=".service.AutoCheckService"
- android:exported="false"
- android:priority="1000"
- android:process=":auto_check"/>
- <service android:name=".service.FloatShotScreenService"/>
- <service
- android:name=".service.ListenerShotService"
- android:enabled="true"
- android:exported="true"
- android:process=":listener"/>
- <service
- android:name=".service.ListenerShotNewService"
- android:enabled="true"
- android:exported="true"/>
- <provider
- android:name=".provider.SheepFileProvider"
- android:authorities="${applicationId}.fileprovider"
- android:exported="false"
- android:grantUriPermissions="true">
- <!-- 元数据 -->
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/file_paths"/>
- </provider> <!-- 必须配置 -->
- <activity
- android:name="com.tencent.bugly.beta.ui.BetaActivity"
- android:configChanges="keyboardHidden|orientation|screenSize|locale"
- android:theme="@android:style/Theme.Translucent"/> <!-- 必须配置 fileProvider, 注意: android:authorities="${applicationId}.fileProvider" 不要直接copy,设置为你的包名.fileProvider -->
- <provider
- android:name="android.support.v4.content.FileProvider"
- android:authorities="${applicationId}.fileProvider"
- android:exported="false"
- android:grantUriPermissions="true">
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/file_paths"/>
- </provider>
- <activity
- android:name="com.sheep.gamegroup.view.activity.PersonalInfoAct"
- android:screenOrientation="behind"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.SplashAct"
- android:screenOrientation="portrait"
- android:theme="@style/SplashTheme">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActYfX5"
- android:enabled="false"
- android:icon="@drawable/icon_yf"
- android:label="@string/app_name_yf"
- android:screenOrientation="portrait"
- android:taskAffinity="${applicationId}.yf"
- android:theme="@style/AppActionTheme">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.MiddleSchemeAct"
- android:configChanges="keyboardHidden|screenSize|orientation"
- android:exported="true"
- android:hardwareAccelerated="true"
- android:launchMode="singleInstance"
- android:screenOrientation="portrait"
- android:theme="@style/AppTheme"
- android:windowSoftInputMode="adjustPan|stateHidden">
- <intent-filter android:autoVerify="true">
- <!-- 协议部分,随便设置 -->
- <data
- android:host="small.kfzs.com"
- android:scheme="sheep"/>
- <!-- 下面这几行也必须得设置 -->
- <category android:name="android.intent.category.DEFAULT"/>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.MiddleSchemeSingleAct"
- android:configChanges="keyboardHidden|screenSize|orientation"
- android:exported="true"
- android:hardwareAccelerated="true"
- android:launchMode="singleInstance"
- android:screenOrientation="behind"
- android:theme="@style/AppThemeTransparent"
- android:windowSoftInputMode="adjustPan|stateHidden">
- <intent-filter android:autoVerify="true">
- <!-- 协议部分,随便设置 -->
- <data
- android:host="smallsingle.kfzs.com"
- android:scheme="sheep"/>
- <!-- 下面这几行也必须得设置 -->
- <category android:name="android.intent.category.DEFAULT"/>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.PersonalCenterAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.WithdrawalAct"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.WithdrawalResultAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.TryMakeMoneyact"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.GamemakeMoneyAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.LieMakeMoneyAct"
- android:launchMode="singleTask"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.TaskListAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActAudit"
- android:screenOrientation="portrait"
- android:theme="@style/AppTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.GameTaskOrderListAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.WithdrawalListAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ChangeTelAct"
- android:exported="true"
- android:launchMode="singleInstance"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.pay.activity.ActPayPassword"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="behind"
- android:theme="@style/AppThemeTransparent"/>
- <activity
- android:name="com.sheep.gamegroup.module.login.AccountConsistenceAct"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="behind"
- android:theme="@style/AppThemeTransparent"/>
- <activity
- android:name="com.sheep.gamegroup.module.ActAdJumper"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="behind"
- android:theme="@style/AppThemeTransparent"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActBindMobileRegister"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.TaskDetailAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
- android:theme="@style/MyDialogActivityTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActMain"
- android:configChanges="keyboardHidden|screenSize|orientation"
- android:exported="true"
- android:hardwareAccelerated="true"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:theme="@style/AppThemeMain"
- android:windowSoftInputMode="adjustPan|stateHidden">
- <intent-filter>
- <category android:name="android.intent.category.DEFAULT"/>
- <action android:name="android.intent.action.VIEW"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.AskGetMoneyAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
- android:hardwareAccelerated="false"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- <provider -->
- <!-- android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider" -->
- <!-- android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}" -->
- <!-- android:exported="true" /> -->
- <receiver android:name="com.sheep.gamegroup.receiver.AppAddOrDelReceiver">
- <intent-filter>
- <action android:name="android.intent.action.PACKAGE_ADDED"/>
- <action android:name="android.intent.action.PACKAGE_REMOVED"/>
- <action android:name="android.intent.action.PACKAGE_REPLACED"/>
- <data android:scheme="package"/>
- </intent-filter>
- </receiver>
- <activity
- android:name="com.tencent.tauth.AuthActivity"
- android:launchMode="singleTask"
- android:noHistory="true">
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- <data android:scheme="tencent101461115"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.tencent.connect.common.AssistActivity"
- android:configChanges="orientation|keyboardHidden|screenSize"
- android:screenOrientation="portrait"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.CommitWxAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"
- android:windowSoftInputMode="stateVisible|adjustPan"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGuideOnHook"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.CommitWxCodeAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"
- android:windowSoftInputMode="stateVisible|adjustPan"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
- android:screenOrientation="portrait"
- android:launchMode="singleInstance"
- android:exported="true"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ChangeWxOrTelAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ReNameActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"
- android:windowSoftInputMode="stateVisible|adjustPan"/>
- <activity
- android:name="me.iwf.photopicker.PhotoPickerActivity"
- android:screenOrientation="portrait"
- android:theme="@style/Theme.AppCompat.NoActionBar"/>
- <activity
- android:name="me.iwf.photopicker.PhotoPagerActivity"
- android:screenOrientation="portrait"
- android:theme="@style/Theme.AppCompat.NoActionBar"/>
- <activity
- android:name="com.yalantis.ucrop.UCropActivity"
- android:screenOrientation="portrait"
- android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActNewbieTaskList"
- android:configChanges="orientation|keyboardHidden|navigation|screenSize"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActUnderstandSheep"
- android:configChanges="orientation|keyboardHidden|navigation|screenSize"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActCreditCardTaskList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActCreditCardWeb"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActXianWanWeb"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.TaskDetailCreditCardAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.TaskDetailAddQQAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActWebX5"
- android:configChanges="orientation|screenSize"
- android:exported="true"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActWebX5NewProcess"
- android:configChanges="orientation|screenSize"
- android:exported="true"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActWebX5YF"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.DEFAULT"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActWebX5SBD"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.DEFAULT"/>
- </intent-filter>
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActWebX5Single"
- android:launchMode="singleInstance"
- android:screenOrientation="portrait"
- android:exported="true"
- android:theme="@style/AppActionTheme">
- </activity>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActImg"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActMyMoney"
- android:exported="true"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.NewYearActMyMoney"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSignCard"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSignCardRecord"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.SignCardAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.SignRankingsAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.SignRecordAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActUserNoviceGuidance"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActXiaomiGame"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActTestExpression"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.MiddleScreenShotAct"
- android:screenOrientation="user"
- android:theme="@style/MyDialogActivityTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActPlayVideo"
- android:configChanges="orientation|keyboardHidden|navigation|screenSize"
- android:screenOrientation="user"
- android:theme="@style/AppTheme.noTitleBar"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActVideoDetail"
- android:configChanges="orientation|keyboardHidden|navigation|screenSize"
- android:screenOrientation="user"
- android:theme="@style/AppTheme.noTitleBar"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActInputAndPickerImg"
- android:theme="@style/AppTheme.translucent"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActVideoComment"
- android:theme="@style/AppTheme.fullTranslucent"/> <!-- 友盟start -->
- <meta-data
- android:name="UMENG_APPKEY"
- android:value="${umeng_app_key}"/>
- <meta-data
- android:name="UMENG_CHANNEL"
- android:value="xxx"/> <!-- 极光推送 -->
- <!-- For test only 测试状态通知栏,需要打开的Activity -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.MiddleAct"
- android:exported="false">
- <intent-filter>
- <action android:name="jpush.testAction"/>
- <category android:name="jpush.testCategory"/>
- </intent-filter>
- </activity> <!-- Rich push 核心功能 since 2.0.6 -->
- <activity
- android:name="cn.jpush.android.ui.PopWinActivity"
- android:exported="false"
- android:theme="@style/MyDialogStyle"/> <!-- Required SDK核心功能 -->
- <activity
- android:name="cn.jpush.android.ui.PushActivity"
- android:configChanges="orientation|keyboardHidden"
- android:exported="false"
- android:theme="@android:style/Theme.NoTitleBar">
- <intent-filter>
- <action android:name="cn.jpush.android.ui.PushActivity"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <category android:name="${applicationId}"/>
- </intent-filter>
- </activity> <!-- Required SDK 核心功能 -->
- <!-- 可配置android:process参数将PushService放在其他进程中 -->
- <service
- android:name="cn.jpush.android.service.PushService"
- android:exported="false"
- android:process=":mult">
- <intent-filter>
- <action android:name="cn.jpush.android.intent.REGISTER"/>
- <action android:name="cn.jpush.android.intent.REPORT"/>
- <action android:name="cn.jpush.android.intent.PushService"/>
- <action android:name="cn.jpush.android.intent.PUSH_TIME"/>
- </intent-filter>
- </service> <!-- since 3.0.9 Required SDK 核心功能 -->
- <provider
- android:name="cn.jpush.android.service.DataProvider"
- android:authorities="${applicationId}.DataProvider"
- android:exported="false"/> <!-- since 1.8.0 option 可选项。用于同一设备中不同应用的JPush服务相互拉起的功能。 -->
- <!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
- <service
- android:name="cn.jpush.android.service.DaemonService"
- android:enabled="true"
- android:exported="true">
- <intent-filter>
- <action android:name="cn.jpush.android.intent.DaemonService"/>
- <category android:name="${applicationId}"/>
- </intent-filter>
- </service> <!-- since 3.1.0 Required SDK 核心功能 -->
- <provider
- android:name="cn.jpush.android.service.DownloadProvider"
- android:authorities="${applicationId}.DownloadProvider"
- android:exported="true"/> <!-- Required SDK核心功能 -->
- <receiver
- android:name="cn.jpush.android.service.PushReceiver"
- android:enabled="true"
- android:exported="false">
- <intent-filter android:priority="1000">
- <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY"/> <!-- Required 显示通知栏 -->
- <category android:name="${applicationId}"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.USER_PRESENT"/>
- <action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
- </intent-filter>
- <!-- Optional -->
- <intent-filter>
- <action android:name="android.intent.action.PACKAGE_ADDED"/>
- <action android:name="android.intent.action.PACKAGE_REMOVED"/>
- <data android:scheme="package"/>
- </intent-filter>
- </receiver> <!-- Required SDK核心功能 -->
- <receiver
- android:name="cn.jpush.android.service.AlarmReceiver"
- android:exported="false"/> <!-- User defined. For test only 用户自定义的广播接收器 -->
- <receiver
- android:name="com.sheep.gamegroup.receiver.SheepJpushReceiver"
- android:enabled="true"
- android:exported="false">
- <intent-filter>
- <action android:name="cn.jpush.android.intent.REGISTRATION"/> <!-- Required 用户注册SDK的intent -->
- <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED"/> <!-- Required 用户接收SDK消息的intent -->
- <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED"/> <!-- Required 用户接收SDK通知栏信息的intent -->
- <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED"/> <!-- Required 用户打开自定义通知栏的intent -->
- <action android:name="cn.jpush.android.intent.CONNECTION"/> <!-- 接收网络变化 连接/断开 since 1.6.3 -->
- <category android:name="${applicationId}"/>
- </intent-filter>
- </receiver> <!-- User defined. For test only 用户自定义接收消息器,3.0.7开始支持,目前新tag/alias接口设置结果会在该广播接收器对应的方法中回调 -->
- <receiver android:name="com.sheep.gamegroup.receiver.SheepJpushMessageReceiver">
- <intent-filter>
- <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE"/>
- <category android:name="${applicationId}"/>
- </intent-filter>
- </receiver> <!-- Required . Enable it you can get statistics data with channel -->
- <meta-data
- android:name="JPUSH_CHANNEL"
- android:value="developer-default"/>
- <meta-data
- android:name="JPUSH_APPKEY"
- android:value="${jpush_appkey}"/> <!-- </>值来自开发者平台取得的AppKey -->
- <!-- 极光推送end -->
- <!-- div start -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.RechargeAct"
- android:exported="true"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.RechargeQAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- div end -->
- <!-- alipay 支付宝 sdk end -->
- <!-- 百度定位 sdk start -->
- <meta-data
- android:name="com.baidu.lbsapi.API_KEY"
- android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL"/>
- <service
- android:name="com.baidu.location.f"
- android:enabled="true"
- android:process=":remote"/> <!-- 百度定位 sdk end -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActNotice"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGuide"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActLoadH5"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActUserLabelList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActNewAboutUs"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActInstallApkList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSheepApkList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSheepPngList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGameAgencyRecharge"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGameAccount"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSearchGame"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSetting"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGameCenter"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActDownloadWelfareList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGiftCenter"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActMyWelfare"
- android:exported="true"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.MessageInteractionDetailActivity"
- android:exported="true"
- android:theme="@style/AppActionTheme"/> <!-- start幂动科技 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActMiDong"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActArticle"
- android:configChanges="orientation|screenSize|keyboardHidden"/> <!-- 小绵羊 3.4.2 合并资讯与资讯评论界面,且默认不显示输入法 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActArticleComment"
- android:configChanges="orientation|keyboardHidden"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"
- android:windowSoftInputMode="adjustUnspecified|stateHidden"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSearchApp"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActMsg"
- android:exported="true"
- android:launchMode="singleInstance"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGiftDetail"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActModifyThird"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActPlayGameList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActPlayGameUserLikeList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActPlayGameRecommendList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActGcGameAppDetail"
- android:screenOrientation="portrait"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActCommentGameApp"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActUserCommentDetail"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActUserAppHome"
- android:screenOrientation="portrait"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActSysNfDetail"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActInvitation"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- start幂动科技 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActWebShareImage"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <receiver
- android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
- android:enabled="true"
- android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.PACKAGE_ADDED"/>
- <action android:name="android.intent.action.PACKAGE_REPLACED"/>
- <action android:name="android.intent.action.PACKAGE_REMOVED"/>
- <data android:scheme="package"/>
- </intent-filter>
- </receiver> <!-- start 小绵羊sdk相关 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActPay"
- android:configChanges="orientation|screenSize"
- android:exported="true"
- android:launchMode="singleInstance"
- android:screenOrientation="behind"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.qrcode.FaceWithQRActivity"
- android:configChanges="orientation|screenSize"
- android:exported="true"
- android:launchMode="singleInstance"
- android:screenOrientation="behind"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.qrcode.QRCodeActivity"
- android:configChanges="orientation|screenSize"
- android:exported="true"
- android:launchMode="singleInstance"
- android:screenOrientation="portrait"
- android:theme="@style/AppThemeMain"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.GameCertificationActivity"
- android:configChanges="orientation|screenSize"
- android:exported="true"
- android:screenOrientation="behind"
- android:theme="@style/AppActionTheme"/> <!-- end 小绵羊sdk相关 -->
- <!-- 签到 -->
- <activity
- android:name=".ui.activity.SignActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 活动规则 -->
- <activity
- android:name=".ui.activity.ActiveRuleActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 我的关注 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActMyFocus"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 足迹 -->
- <activity
- android:name="com.sheep.gamegroup.module.user.activity.ActMyCart"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 足迹 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActFootprint"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 收徒红包 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActApprenticeRedPacket"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 兑换商城 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActExchangeMall"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 每日分享 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActEveryDayShare"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 娱乐抽奖 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActEntertainmentLuckDraw"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 金币中心 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActCoinCenter"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 发布发现内容 -->
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActPublishArticle"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.5 选择图片与视频 -->
- <activity
- android:name="com.sheep.gamegroup.module.find.activity.ActMediaChoose"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.login.LoginAct"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"/>
- <activity
- android:name="com.sheep.gamegroup.module.login.ChangePasswordAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.login.ReLoginNameAct"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.7 新增界面 -->
- <activity
- android:name="com.sheep.gamegroup.module.user.activity.ActVip"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActMyGameList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/> <!-- 小绵羊3.4.10 新增界面 -->
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActGameGroupMore"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActDownloadManager"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActGameCenterType"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActGameRank"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.search.ActSearch"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActGameGroupOrGameDetail"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.find.activity.ActFind"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.view.activity.ActTest"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActWelfareSpecialArea"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <activity
- android:name="com.sheep.gamegroup.module.game.activity.ActGitBagList"
- android:screenOrientation="portrait"
- android:theme="@style/AppActionTheme"/>
- <provider
- android:name=".provider.TokenRenewalProvider"
- android:authorities="${applicationId}.renewal"
- android:enabled="true"
- android:exported="true"/>
- <service
- android:name=".service.PushMessageService"
- android:exported="false"/>
- <activity
- android:name="com.ipaynow.plugin.presenter.PayMethodActivity"
- android:configChanges="keyboardHidden|navigation|orientation|screenSize"
- android:exported="false"
- android:theme="@android:style/Theme.Dialog"/>
- <!-- =================点客广告SDK================== -->
- <!--<activity-->
- <!--android:name="com.tencent.tmsecure.dksdk.ad.TxRewardVideoActivity"-->
- <!--android:configChanges="keyboardHidden|navigation|orientation|screenSize"-->
- <!--android:screenOrientation="portrait"-->
- <!--android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />-->
- <!--<activity-->
- <!--android:name="com.tencent.tmsecure.dksdk.ad.TxDownCoinActivity"-->
- <!--android:configChanges="keyboardHidden|navigation|orientation|screenSize"-->
- <!--android:screenOrientation="portrait"-->
- <!--android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />-->
- <!--<activity-->
- <!--android:name="com.tencent.tmsecure.dksdk.ad.PlayGiveCoinActivity"-->
- <!--android:screenOrientation="portrait"-->
- <!--android:configChanges="keyboardHidden|orientation|screenSize"-->
- <!--android:theme="@style/dk_dialogstyle" />-->
- <!--<activity-->
- <!--android:name="com.tencent.tmsecure.dksdk.ad.WebViewActivity"-->
- <!--android:configChanges="keyboardHidden|navigation|orientation|screenSize"-->
- <!--android:screenOrientation="portrait"-->
- <!--android:hardwareAccelerated="true"-->
- <!--android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />-->
- </application>
- </manifest>
|