|
@@ -0,0 +1,171 @@
|
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
+ <permissions>
|
|
|
+
|
|
|
+ <!-- 悬浮窗口权限 -->
|
|
|
+ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
+ <!-- 可以悬浮在桌面上 -->
|
|
|
+ <uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
+ <!-- 网络权限 -->
|
|
|
+ <uses-permission android:name="android.permission.INTERNET" />
|
|
|
+ <!-- 获取网络状态 -->
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
+ <!-- 允许程序写入外部存储,如SD卡上写文件 -->
|
|
|
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
+ <!-- 读取手机状态,银联支付插件需要该权限 -->
|
|
|
+ <uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
+ <!-- 访问wifi状态,银联支付插件需要该权限 -->
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
+ <!-- 读取地理位置信息 -->
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
+ <!-- 硬件加速对X5视频播放非常重要,建议开启 -->
|
|
|
+ <uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
+
|
|
|
+
|
|
|
+ <uses-permission android:name="android.permission.WRITE_APN_SETTINGS"/>
|
|
|
+
|
|
|
+ <!-- 联通支付渠道权限 -->
|
|
|
+ <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
|
|
|
+ <uses-permission android:name="android.permission.SEND_SMS" />
|
|
|
+ <!-- oaid -->
|
|
|
+ <uses-permission android:name="com.asus.msa.SupplementaryDID.ACCESS"/>
|
|
|
+ <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
+
|
|
|
+ </permissions>
|
|
|
+
|
|
|
+ <application>
|
|
|
+ <!-- jmsdk -->
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.JmLoginActivity"
|
|
|
+ android:screenOrientation="behind"
|
|
|
+ android:launchMode="singleTop"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:theme="@style/jm_Transparent" />
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.JmAutoLoginActivity"
|
|
|
+ android:screenOrientation="behind"
|
|
|
+ android:launchMode="singleTop"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:theme="@style/jm_Transparent" />
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.JmUserinfoActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="behind"
|
|
|
+ android:launchMode="singleTop"
|
|
|
+ android:theme="@style/jm_Transparent" />
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.JmpayActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="behind"
|
|
|
+ android:launchMode="singleTop"
|
|
|
+ android:theme="@style/jm_Transparent" />
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.JmCommunityActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTop"
|
|
|
+ android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" />
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.PermissionActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="behind"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
|
|
|
+ <activity
|
|
|
+ android:name="com.jmhy.sdk.activity.ForceActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="behind"
|
|
|
+ android:launchMode="singleTop"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
|
|
|
+
|
|
|
+ <service android:name="com.jmhy.sdk.push.PushService" />
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 聚合sdk -->
|
|
|
+ <!-- 闪屏Activity -->
|
|
|
+ <activity android:name="fusion.mj.communal.element.SplashScreenActivity"
|
|
|
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
+ android:screenOrientation="landscape">
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="android.intent.action.MAIN" />
|
|
|
+ <category android:name="android.intent.category.LAUNCHER" />
|
|
|
+ </intent-filter>
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ <activity android:name="fusion.mj.communal.element.RequestPermissionsHelpActivity"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- sdk对接类 -->
|
|
|
+ <meta-data
|
|
|
+ android:name="fusion_userimp"
|
|
|
+ android:value="fusion.sdk.channel.mj.Mj"/>
|
|
|
+
|
|
|
+
|
|
|
+ <meta-data
|
|
|
+ android:name="fusion_game_name"
|
|
|
+ android:value="${package_Name}"/>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!--现网填true 测试网填false-->
|
|
|
+ <meta-data
|
|
|
+ android:name="fusion_online"
|
|
|
+ android:value="true"/>
|
|
|
+ <!-- 聚合sdk -->
|
|
|
+
|
|
|
+ <!-- 千禧组件 -->
|
|
|
+
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="cn.mj.sdk.LoginActivity"
|
|
|
+ android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
|
|
|
+ android:windowSoftInputMode="adjustPan" >
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ <service android:name="cn.mj.sdk.CallbackResultService" >
|
|
|
+ </service>
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="cn.mj.sdk.ui.floatView.FloatBallService"
|
|
|
+ android:exported="false" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="cn.mj.sdk.CommonWebviewActivity"
|
|
|
+ android:configChanges="orientation|screenSize|keyboardHidden"/>
|
|
|
+ <!-- todo FusionChaActivity 充值页面强制为竖屏=>适配机型 -->
|
|
|
+ <activity
|
|
|
+ android:name="fusion.mj.communal.element.FusionChaActivity"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" >
|
|
|
+ </activity>
|
|
|
+ <activity
|
|
|
+ android:name="fusion.mj.communal.element.NoticeActivity"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
|
|
|
+
|
|
|
+ <!-- todo PaymentActivity 充值页面强制为竖屏=>适配机型 -->
|
|
|
+ <activity
|
|
|
+ android:name="cn.mj.sdk.PaymentActivity"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="cn.mj.sdk.ui.ActicitySide"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="cn.mj.sdk.ui.baseSdkView.ChargeRealNameView"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ </application>
|
|
|
+</manifest>
|