|
|
@@ -2,13 +2,14 @@
|
|
|
<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 一些系统要求的权限,如访问网络等-->
|
|
|
+ <!-- Required 一些系统要求的权限,如访问网络等 -->
|
|
|
<uses-permission android:name="${applicationId}.permission.JPUSH_MESSAGE" />
|
|
|
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
@@ -33,7 +34,7 @@
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
|
- <!--极光推送end-->
|
|
|
+ <!-- 极光推送end -->
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
@@ -48,13 +49,13 @@
|
|
|
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.ACCESS_NETWORK_STATE" />
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
<uses-permission
|
|
|
android:name="android.permission.READ_LOGS"
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
- <!--保存资源到SD卡-->
|
|
|
+ <!-- 保存资源到SD卡 -->
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
<!-- 推荐的权限 -->
|
|
|
<!-- 添加如下权限,以便使用更多的第三方SDK和更精准的统计数据 -->
|
|
|
@@ -65,28 +66,28 @@
|
|
|
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
|
|
|
|
|
|
<!-- 百度定位权限 start -->
|
|
|
- <!-- 这个权限用于进行网络定位-->
|
|
|
+ <!-- 这个权限用于进行网络定位 -->
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
- <!-- 这个权限用于访问GPS定位-->
|
|
|
+ <!-- 这个权限用于访问GPS定位 -->
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
- <!-- 用于访问wifi网络信息,wifi信息会用于进行网络定位-->
|
|
|
+ <!-- 用于访问wifi网络信息,wifi信息会用于进行网络定位 -->
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
- <!-- 获取运营商信息,用于支持提供运营商信息相关的接口-->
|
|
|
+ <!-- 获取运营商信息,用于支持提供运营商信息相关的接口 -->
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
- <!-- 这个权限用于获取wifi的获取权限,wifi信息会用来进行网络定位-->
|
|
|
+ <!-- 这个权限用于获取wifi的获取权限,wifi信息会用来进行网络定位 -->
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
- <!-- 用于读取手机当前的状态-->
|
|
|
+ <!-- 用于读取手机当前的状态 -->
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
- <!-- 写入扩展存储,向扩展卡写入数据,用于写入离线定位数据-->
|
|
|
+ <!-- 写入扩展存储,向扩展卡写入数据,用于写入离线定位数据 -->
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
- <!-- 访问网络,网络定位需要上网-->
|
|
|
+ <!-- 访问网络,网络定位需要上网 -->
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
- <!-- SD卡读取权限,用户写入离线定位数据-->
|
|
|
+ <!-- SD卡读取权限,用户写入离线定位数据 -->
|
|
|
<uses-permission
|
|
|
android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
- <!-- 百度定位权限 end -->
|
|
|
|
|
|
+ <!-- 百度定位权限 end -->
|
|
|
<application
|
|
|
android:name=".SheepApp"
|
|
|
android:allowBackup="true"
|
|
|
@@ -118,11 +119,10 @@
|
|
|
<service android:name=".service.DownloadService" />
|
|
|
<service
|
|
|
android:name=".service.AutoCheckService"
|
|
|
- android:priority="1000"
|
|
|
android:exported="false"
|
|
|
- android:process=":auto_check"/>
|
|
|
- <service
|
|
|
- android:name=".service.FloatShotScreenService" />
|
|
|
+ android:priority="1000"
|
|
|
+ android:process=":auto_check" />
|
|
|
+ <service android:name=".service.FloatShotScreenService" />
|
|
|
<service
|
|
|
android:name=".service.ListenerShotService"
|
|
|
android:enabled="true"
|
|
|
@@ -145,14 +145,13 @@
|
|
|
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-->
|
|
|
+ <!-- 必须配置 fileProvider, 注意: android:authorities="${applicationId}.fileProvider" 不要直接copy,设置为你的包名.fileProvider -->
|
|
|
<provider
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
android:authorities="${applicationId}.fileProvider"
|
|
|
@@ -161,34 +160,29 @@
|
|
|
<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="portrait"></activity>
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
|
|
|
- <!--2.0-->
|
|
|
+ <!-- 2.0 -->
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.LoginAct"
|
|
|
android:configChanges="keyboardHidden|screenSize|orientation"
|
|
|
android:launchMode="singleTask"
|
|
|
android:screenOrientation="portrait"
|
|
|
- android:theme="@style/FullScreenTheme">
|
|
|
-
|
|
|
- </activity>
|
|
|
-
|
|
|
+ android:theme="@style/FullScreenTheme"></activity>
|
|
|
<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.MiddleSchemeAct"
|
|
|
android:configChanges="keyboardHidden|screenSize|orientation"
|
|
|
@@ -199,12 +193,17 @@
|
|
|
android:theme="@style/AppTheme"
|
|
|
android:windowSoftInputMode="adjustPan|stateHidden">
|
|
|
<intent-filter android:autoVerify="true">
|
|
|
- <!--协议部分,随便设置-->
|
|
|
- <data android:scheme="sheep" android:host="small.kfzs.com"/>
|
|
|
- <!--下面这几行也必须得设置-->
|
|
|
- <category android:name="android.intent.category.DEFAULT"/>
|
|
|
- <action android:name="android.intent.action.VIEW"/>
|
|
|
- <category android:name="android.intent.category.BROWSABLE"/>
|
|
|
+
|
|
|
+ <!-- 协议部分,随便设置 -->
|
|
|
+ <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
|
|
|
@@ -255,21 +254,21 @@
|
|
|
android:name="com.sheep.gamegroup.view.activity.DialogToastAct"
|
|
|
android:theme="@style/MyDialogActivityTheme" />
|
|
|
|
|
|
- <!--<!–半袋米首页–>-->
|
|
|
- <!--<activity-->
|
|
|
- <!--android:name="com.kfzs.duanduan.ActMain"-->
|
|
|
- <!--android:configChanges="keyboardHidden|screenSize|orientation"-->
|
|
|
- <!--android:exported="true"-->
|
|
|
- <!--android:hardwareAccelerated="true"-->
|
|
|
- <!--android:launchMode="singleTask"-->
|
|
|
- <!--android:screenOrientation="portrait"-->
|
|
|
- <!--android:theme="@style/AppTheme"-->
|
|
|
- <!--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.kfzs.duanduan.ActMain" -->
|
|
|
+ <!-- android:configChanges="keyboardHidden|screenSize|orientation" -->
|
|
|
+ <!-- android:exported="true" -->
|
|
|
+ <!-- android:hardwareAccelerated="true" -->
|
|
|
+ <!-- android:launchMode="singleTask" -->
|
|
|
+ <!-- android:screenOrientation="portrait" -->
|
|
|
+ <!-- android:theme="@style/AppTheme" -->
|
|
|
+ <!-- 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.ActMain"
|
|
|
android:configChanges="keyboardHidden|screenSize|orientation"
|
|
|
@@ -281,27 +280,25 @@
|
|
|
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" />
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActExchangeCMCC"
|
|
|
android:screenOrientation="portrait" />
|
|
|
-
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActDownloadMgr"
|
|
|
android:hardwareAccelerated="false"
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
- <!--<provider-->
|
|
|
- <!--android:name="com.kfzs.duanduan.data.graph.provider.KFZSProvider"-->
|
|
|
- <!--android:authorities="com.kfzs.duanduan.data.graph.provider.${DUANDUAN_GRAPH}"-->
|
|
|
- <!--android:exported="true" />-->
|
|
|
-
|
|
|
+ <!-- <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>
|
|
|
@@ -317,7 +314,6 @@
|
|
|
android:name="com.tencent.tauth.AuthActivity"
|
|
|
android:launchMode="singleTask"
|
|
|
android:noHistory="true">
|
|
|
-
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
@@ -326,15 +322,11 @@
|
|
|
|
|
|
<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"
|
|
|
@@ -349,7 +341,6 @@
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActGuideDeblocked"
|
|
|
android:screenOrientation="portrait" />
|
|
|
-
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.RealNameAuthenAct"
|
|
|
android:screenOrientation="portrait" />
|
|
|
@@ -364,7 +355,6 @@
|
|
|
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"
|
|
|
@@ -373,7 +363,6 @@
|
|
|
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:screenOrientation="portrait" />
|
|
|
@@ -404,8 +393,6 @@
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.FeedbackAct"
|
|
|
android:screenOrientation="portrait" />
|
|
|
-
|
|
|
-
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActSignCard"
|
|
|
android:screenOrientation="portrait" />
|
|
|
@@ -432,7 +419,7 @@
|
|
|
android:screenOrientation="user"
|
|
|
android:theme="@style/MyDialogActivityTheme" />
|
|
|
|
|
|
- <!--友盟start-->
|
|
|
+ <!-- 友盟start -->
|
|
|
<meta-data
|
|
|
android:name="UMENG_APPKEY"
|
|
|
android:value="${umeng_app_key}" />
|
|
|
@@ -440,8 +427,8 @@
|
|
|
android:name="UMENG_CHANNEL"
|
|
|
android:value="xxx" />
|
|
|
|
|
|
+ <!-- 极光推送 -->
|
|
|
|
|
|
- <!--极光推送-->
|
|
|
|
|
|
<!-- For test only 测试状态通知栏,需要打开的Activity -->
|
|
|
<activity
|
|
|
@@ -449,15 +436,16 @@
|
|
|
android:exported="false">
|
|
|
<intent-filter>
|
|
|
<action android:name="jpush.testAction" />
|
|
|
+
|
|
|
<category android:name="jpush.testCategory" />
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
- <!-- Rich push 核心功能 since 2.0.6-->
|
|
|
+ <!-- Rich push 核心功能 since 2.0.6 -->
|
|
|
<activity
|
|
|
android:name="cn.jpush.android.ui.PopWinActivity"
|
|
|
android:exported="false"
|
|
|
- android:theme="@style/MyDialogStyle"></activity>
|
|
|
- <!-- Required SDK核心功能-->
|
|
|
+ android:theme="@style/MyDialogStyle" />
|
|
|
+ <!-- Required SDK核心功能 -->
|
|
|
<activity
|
|
|
android:name="cn.jpush.android.ui.PushActivity"
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
@@ -471,7 +459,7 @@
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
|
|
|
- <!-- Required SDK 核心功能-->
|
|
|
+ <!-- Required SDK 核心功能 -->
|
|
|
<!-- 可配置android:process参数将PushService放在其他进程中 -->
|
|
|
<service
|
|
|
android:name="cn.jpush.android.service.PushService"
|
|
|
@@ -484,13 +472,12 @@
|
|
|
<action android:name="cn.jpush.android.intent.PUSH_TIME" />
|
|
|
</intent-filter>
|
|
|
</service>
|
|
|
- <!-- since 3.0.9 Required SDK 核心功能-->
|
|
|
+ <!-- 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
|
|
|
@@ -499,22 +486,22 @@
|
|
|
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 核心功能-->
|
|
|
+ <!-- since 3.1.0 Required SDK 核心功能 -->
|
|
|
<provider
|
|
|
android:name="cn.jpush.android.service.DownloadProvider"
|
|
|
android:authorities="${applicationId}.DownloadProvider"
|
|
|
android:exported="true" />
|
|
|
- <!-- Required SDK核心功能-->
|
|
|
+ <!-- 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 显示通知栏 -->
|
|
|
+ <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <!-- Required 显示通知栏 -->
|
|
|
<category android:name="${applicationId}" />
|
|
|
</intent-filter>
|
|
|
<intent-filter>
|
|
|
@@ -530,30 +517,31 @@
|
|
|
</intent-filter>
|
|
|
</receiver>
|
|
|
|
|
|
- <!-- Required SDK核心功能-->
|
|
|
+ <!-- Required SDK核心功能 -->
|
|
|
<receiver
|
|
|
android:name="cn.jpush.android.service.AlarmReceiver"
|
|
|
android:exported="false" />
|
|
|
|
|
|
- <!-- User defined. For test only 用户自定义的广播接收器-->
|
|
|
+ <!-- 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 -->
|
|
|
+ <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接口设置结果会在该广播接收器对应的方法中回调-->
|
|
|
+ <!-- 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>
|
|
|
@@ -564,10 +552,11 @@
|
|
|
android:value="developer-default" />
|
|
|
<meta-data
|
|
|
android:name="JPUSH_APPKEY"
|
|
|
- android:value="${jpush_appkey}" /> <!-- </>值来自开发者平台取得的AppKey-->
|
|
|
- <!--极光推送end-->
|
|
|
+ android:value="${jpush_appkey}" /> <!-- </>值来自开发者平台取得的AppKey -->
|
|
|
+ <!-- 极光推送end -->
|
|
|
+
|
|
|
|
|
|
- <!-- div start-->
|
|
|
+ <!-- div start -->
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.RechargeAct"
|
|
|
android:screenOrientation="portrait" />
|
|
|
@@ -577,7 +566,8 @@
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.RechargeResultAct"
|
|
|
android:screenOrientation="portrait" />
|
|
|
- <!-- div end-->
|
|
|
+ <!-- div end -->
|
|
|
+
|
|
|
|
|
|
<!-- alipay 支付宝 sdk begin -->
|
|
|
<activity
|
|
|
@@ -585,19 +575,21 @@
|
|
|
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
|
|
|
android:exported="false"
|
|
|
android:screenOrientation="behind"
|
|
|
- android:windowSoftInputMode="adjustResize|stateHidden"></activity>
|
|
|
+ android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
|
|
<!-- alipay 支付宝 sdk end -->
|
|
|
|
|
|
- <!-- 百度定位 sdk start -->
|
|
|
+
|
|
|
+ <!-- 百度定位 sdk start -->
|
|
|
<meta-data
|
|
|
android:name="com.baidu.lbsapi.API_KEY"
|
|
|
- android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL"></meta-data>
|
|
|
+ android:value="gXD6RhE7ncVIcl1crk5SeUoVm7ceNtkL" />
|
|
|
+
|
|
|
<service
|
|
|
android:name="com.baidu.location.f"
|
|
|
android:enabled="true"
|
|
|
- android:process=":remote"></service>
|
|
|
- <!-- 百度定位 sdk end -->
|
|
|
+ android:process=":remote" />
|
|
|
+ <!-- 百度定位 sdk end -->
|
|
|
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActNotice"
|
|
|
@@ -684,7 +676,7 @@
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActInvitation"
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
- <!--start幂动科技-->
|
|
|
+ <!-- start幂动科技 -->
|
|
|
|
|
|
<activity
|
|
|
android:name="com.sheep.gamegroup.view.activity.ActMiDong"
|
|
|
@@ -699,7 +691,6 @@
|
|
|
android:enabled="true"
|
|
|
android:priority="1000" />
|
|
|
|
|
|
-
|
|
|
<receiver
|
|
|
android:name="com.mdad.sdk.mdsdk.AppInstallReceiver"
|
|
|
android:enabled="true"
|
|
|
@@ -712,7 +703,6 @@
|
|
|
<data android:scheme="package" />
|
|
|
</intent-filter>
|
|
|
</receiver>
|
|
|
-
|
|
|
<receiver
|
|
|
android:name="com.mdad.sdk.mdsdk.DownloadCompleteReceiver"
|
|
|
android:enabled="true"
|
|
|
@@ -722,8 +712,8 @@
|
|
|
<action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
|
|
|
</intent-filter>
|
|
|
</receiver>
|
|
|
- <!--end幂动科技-->
|
|
|
+ <!-- end幂动科技 -->
|
|
|
+ <activity android:name=".ui.activity.HomeActivity"></activity>
|
|
|
</application>
|
|
|
|
|
|
-
|
|
|
</manifest>
|