client_Hale
2018-08-13 64adbaee8d6f975d33d534c53c89ca6928cd8cff
fixed 提交灵仙记渠道差异
2个文件已添加
236 ■■■■■ 已修改文件
渠道差异/灵仙记/AndroidManifest.xml 236 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
渠道差异/灵仙记/libs/app-lxj-release.aar 补丁 | 查看 | 原始文档 | blame | 历史
ÇþµÀ²îÒì/ÁéÏɼÇ/AndroidManifest.xml
New file
@@ -0,0 +1,236 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.secondworld.univeralsdk"
    android:installLocation="auto"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="22" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.GET_TASKS" />
    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
    <uses-permission android:name="android.permission.READ_LOGS" />
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
    <permission
        android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
        android:protectionLevel="signature" />
    <!-- Required -->
    <permission
        android:name="com.zyxhgame.gamelxj.permission.JPUSH_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission android:name="com.zyxhgame.gamelxj.permission.JPUSH_MESSAGE" />
    <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
    <application
        android:allowBackup="true"
        android:hardwareAccelerated="false"
        android:icon="@drawable/app_icon"
        android:isGame="true"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
        <activity
            android:name="com.secondworld.univeralsdk.MainActivity"
            android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection"
            android:label="@string/app_name"
            android:launchMode="singleTop"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
            <meta-data
                android:name="unityplayer.UnityActivity"
                android:value="true" />
            <meta-data
                android:name="unityplayer.SkipPermissionsDialog"
                android:value="true" />
        </activity>
        <!-- é’ˆå¯¹7.0以上的api开放的文件权限 -->
        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.zyxhgame.gamelxj.fileProvider"
            android:exported="false"
            android:grantUriPermissions="true" >
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>
        <meta-data
            android:name="yl_appid"
            android:value="226114725" />
        <meta-data
            android:name="yl_channelid"
            android:value="1000" />
        <meta-data
            android:name="yl_platform_id"
            android:value="1000" />
        <meta-data
            android:name="TrackAppID"
            android:value="0c5ad863fb8935d18b3ecefe05389701" />
        <meta-data
            android:name="TrackChannelID"
            android:value="_default_" />
        <!-- 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="com.zyxhgame.gamelxj.DataProvider"
            android:exported="true" />
        <!-- 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="com.zyxhgame.gamelxj" />
            </intent-filter>
        </service>
        <!-- since 3.1.0 Required SDK æ ¸å¿ƒåŠŸèƒ½ -->
        <provider
            android:name="cn.jpush.android.service.DownloadProvider"
            android:authorities="com.zyxhgame.gamelxj.DownloadProvider"
            android:exported="true" />
        <!-- Required SDK核心功能 -->
        <receiver
            android:name="cn.jpush.android.service.PushReceiver"
            android:enabled="true" >
            <intent-filter android:priority="1000" >
                <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" />
                <category android:name="com.zyxhgame.gamelxj" />
            </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核心功能 -->
        <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="com.zyxhgame.gamelxj" />
            </intent-filter>
        </activity>
        <!-- SDK核心功能 -->
        <activity
            android:name="cn.jpush.android.ui.PopWinActivity"
            android:configChanges="orientation|keyboardHidden"
            android:exported="false"
            android:theme="@style/MyDialogStyle" >
            <intent-filter>
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="com.zyxhgame.gamelxj" />
            </intent-filter>
        </activity>
        <!-- Required SDK核心功能 -->
        <service
            android:name="cn.jpush.android.service.DownloadService"
            android:enabled="true"
            android:exported="false" />
        <!-- Required SDK核心功能 -->
        <receiver android:name="cn.jpush.android.service.AlarmReceiver" />
        <!-- Required since 3.0.7 -->
        <!-- æ–°çš„tag/alias接口结果返回需要开发者配置一个自定的广播 -->
        <!-- è¯¥å¹¿æ’­éœ€è¦ç»§æ‰¿JPush提供的JPushMessageReceiverç±», å¹¶å¦‚下新增一个 Intent-Filter -->
        <!-- <receiver -->
        <!-- android:name="自定义 Receiver" -->
        <!-- android:enabled="true" > -->
        <!-- <intent-filter> -->
        <!-- <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" /> -->
        <!-- <category android:name="您应用的包名" /> -->
        <!-- </intent-filter> -->
        <!-- </receiver> -->
        <!-- &lt;!&ndash; User defined. ç”¨æˆ·è‡ªå®šä¹‰çš„广播接收器&ndash;&gt; -->
        <receiver
            android:name="com.secondworld.univeralsdk.JPushReceiver"
            android:enabled="true" >
            <intent-filter>
                <!-- Required ç”¨æˆ·æ³¨å†ŒSDK的intent -->
                <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" />
                <!-- æŽ¥æ”¶ç½‘络变化 è¿žæŽ¥/断开 since 1.6.3 -->
                <action android:name="cn.jpush.android.intent.CONNECTION" />
                <category android:name="com.zyxhgame.gamelxj" />
            </intent-filter>
        </receiver>
        <!-- Required. For publish channel feature -->
        <!-- JPUSH_CHANNEL æ˜¯ä¸ºäº†æ–¹ä¾¿å¼€å‘者统计APK分发渠道。 -->
        <!-- ä¾‹å¦‚: -->
        <!-- å‘到 Google Play çš„APK可以设置为 google-play; -->
        <!-- å‘到其他市场的 APK å¯ä»¥è®¾ç½®ä¸º xxx-market。 -->
        <meta-data
            android:name="JPUSH_CHANNEL"
            android:value="developer-default" />
        <!-- Required. AppKey copied from Portal -->
        <meta-data
            android:name="JPUSH_APPKEY"
            android:value="22186239fee975f883198cf4" />
    </application>
</manifest>
ÇþµÀ²îÒì/ÁéÏɼÇ/libs/app-lxj-release.aar
Binary files differ