kaka 4 سال پیش
والد
کامیت
3529561fcf

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
assets/resources/module/login/hot/project.manifest


+ 1 - 1
assets/resources/module/login/hot/version.manifest

@@ -1 +1 @@
-{"version":"1.0.13","packageUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/","remoteManifestUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/project.manifest","remoteVersionUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/version.manifest"}
+{"version":"1.0.14","packageUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/","remoteManifestUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/project.manifest","remoteVersionUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/version.manifest"}

+ 9 - 0
assets/script/mk/sdk/ad/toppon/AnyThinkAds/ATRewardedVideoJSSDK.js

@@ -116,6 +116,15 @@ var ATRewardedVideoSDK = ATRewardedVideoSDK || {
         return "";
     },
 
+    checkValidAdCaches : function(placementId) {
+        if (undefined != platformBridge && platformBridge != null) {
+            return platformBridge.checkValidAdCaches(placementId);
+        } else {
+            cc.log("You must run on Android or iOS.");
+        }
+        return "";
+    },
+
     showAd : function(placementId) {
         if (undefined != platformBridge && platformBridge != null) {
            platformBridge.showAd(placementId);

+ 5 - 0
assets/script/mk/sdk/ad/toppon/AnyThinkAds/Android/ATAndroidRewardedVideoJS.js

@@ -21,6 +21,11 @@ var ATAndroidRewardedVideoJS = ATAndroidRewardedVideoJS || {
         return jsb.reflection.callStaticMethod(classJavaName, "checkAdStatus", "(Ljava/lang/String;)Ljava/lang/String;", placementId);
     },
 
+    checkValidAdCaches : function(placementId) {
+        cc.log("Android-checkValidAdCaches:" + placementId);
+        return jsb.reflection.callStaticMethod(classJavaName, "checkValidAdCaches", "(Ljava/lang/String;)Ljava/lang/String;", placementId);
+    },
+
     showAd : function(placementId) {
         cc.log("Android-rv_showAd:" + placementId);
 		jsb.reflection.callStaticMethod(classJavaName, "show", "(Ljava/lang/String;)V", placementId);

+ 86 - 2
assets/script/mk/sdk/ad/toppon/AnyThinkAdsMgr/ATRewardVideo.ts

@@ -21,6 +21,11 @@ export class ATRewardVideo extends zgSingleton {
     /** 去重点击状态 */
     private singleClick = false;
 
+    /** 预加载广告requestId数组 */
+    private requestIdArr = [];
+    /** 预加载广告tagId数组 */
+    private tagIdArr = [];
+
     init() {
         this.ATRewardVideoJS = cc["ATRewardVideoJS"];
         this.ATRewardVideoJS.proxy = this;
@@ -77,6 +82,10 @@ export class ATRewardVideo extends zgSingleton {
         return this.ATRewardVideoJS.checkAdStatus();
     }
 
+    checkValidAdCaches() {
+        return this.ATRewardVideoJS.checkValidAdCaches();
+    }
+
     //广告回调部分------------------------------------------------------------------------
     /**
      * 激励视频加载完毕
@@ -100,6 +109,33 @@ export class ATRewardVideo extends zgSingleton {
         }
 
         gData.adData.savePreLoadEcpm(data);
+
+        let adStatusCaches = this.checkValidAdCaches();
+        console.log('AnyThinkRewardedVideoDemo>>  adStatusCaches ', adStatusCaches);
+        if (adStatusCaches) {
+            let json = JSON.parse(adStatusCaches)
+            if (json.adInfoList) {
+                let adInfoList = JSON.parse(json.adInfoList);
+                let len = adInfoList.length;
+                for (var i = 0; i < len; i++) {
+                    let adInfo = adInfoList[i];
+                    if (adInfo.ext_info) {
+                        if (adInfo.ext_info.request_id) {
+                            if (this.requestIdArr.indexOf(adInfo.ext_info.request_id) == -1) {
+                                this.requestIdArr.push(adInfo.ext_info.request_id);
+                            }
+                        }
+
+                        if (adInfo.ext_info.tag_id) {
+                            if (this.tagIdArr.indexOf(adInfo.ext_info.tag_id) == -1) {
+                                this.tagIdArr.push(adInfo.ext_info.tag_id);
+                            }
+                        }
+                    }
+                }
+            }
+        }
+        console.log('AnyThinkRewardedVideoDemo>>  this.requestIdArr ', this.requestIdArr.toString());
     }
 
     /**
@@ -157,6 +193,8 @@ export class ATRewardVideo extends zgSingleton {
         //点击关闭的时候重新加载(亲测,即使在start这边 加载 也是在点击关闭时候才返回成功)
         //this.loadAd();
         this.singleClick = true;
+
+        this.loadAd();
     }
 
     /**
@@ -193,6 +231,52 @@ export class ATRewardVideo extends zgSingleton {
         if (this.canGet) {
             ATSDKMgr.getInstance().watchVideoAdCallBack(AdPlayStateType.WatchEnd);
             mk.data.sendDataEvent(DataEventId.video_end, mk.ad.videoAdType);
+
+            let data = JSON.parse(callbackInfo)
+            let request_id = '';
+            let tag_id = '';
+            if (data.ext_info) {
+                if (data.ext_info.request_id) {
+                    request_id = data.ext_info.request_id;
+                }
+                if (data.ext_info.tag_id) {
+                    tag_id = data.ext_info.tag_id;
+                }
+            }
+
+            if (request_id != '') {
+                let index = this.requestIdArr.indexOf(request_id);
+                if (index != -1) {
+                    console.log('AnyThinkRewardedVideoDemo>>  delRequest_id ', request_id);
+                    this.requestIdArr.splice(index, 1);
+                    console.log('AnyThinkRewardedVideoDemo>>  After this.requestIdArr ', this.requestIdArr.toString());
+                }
+                else {
+                    mk.data.sendDataEvent('illegalAdRequestId', `${data.adsource_id}_${request_id}_${gData.loginData.uin}_${gData.appData.appVersion}`);
+                    mk.data.sendXYEvent('illegalAdRequestId', `${data.adsource_id}_${request_id}_${gData.loginData.uin}_${gData.appData.appVersion}`);
+                    console.log('AnyThinkRewardedVideoDemo>>  illegalAdRequestId ', data.adsource_id + "_" + request_id);
+                }
+            }
+            else {
+                console.log('AnyThinkRewardedVideoDemo>>  request_id is Empty ');
+            }
+
+            if (tag_id != '') {
+                let index = this.tagIdArr.indexOf(tag_id);
+                if (index != -1) {
+                    console.log('AnyThinkRewardedVideoDemo>>  delTag_id ', tag_id);
+                    this.tagIdArr.splice(index, 1);
+                    console.log('AnyThinkRewardedVideoDemo>>  After this.tagIdArr ', this.tagIdArr.toString());
+                }
+                else {
+                    mk.data.sendDataEvent('illegalAdTagId', `${data.adsource_id}_${tag_id}_${gData.loginData.uin}_${gData.appData.appVersion}`);
+                    mk.data.sendXYEvent('illegalAdTagId', `${data.adsource_id}_${tag_id}_${gData.loginData.uin}_${gData.appData.appVersion}`);
+                    console.log('AnyThinkRewardedVideoDemo>>  illegalAdTagId ', data.adsource_id + "_" + tag_id);
+                }
+            }
+            else {
+                console.log('AnyThinkRewardedVideoDemo>>  tag_id is Empty ');
+            }
         }
         else {
             ATSDKMgr.getInstance().watchVideoAdCallBack(AdPlayStateType.Cancel);
@@ -203,11 +287,11 @@ export class ATRewardVideo extends zgSingleton {
 
         if (this.singleClick) {
             await gData.warnTipData.getUserShutdownAds(() => {
-                this.loadAd();
+                // this.loadAd();
             })
         }
         else {
-            this.loadAd();
+            // this.loadAd();
         }
     }
 

+ 5 - 0
assets/script/mk/sdk/ad/toppon/AnyThinkAdsMgr/ATRewardVideoJS.js

@@ -47,6 +47,11 @@ var ATRewardVideoJS = cc.Class({
         return ATRewardedVideoJSSDK.checkAdStatus(this.placementID());
     },
 
+    checkValidAdCaches: function () {
+        if (this.proxy == null) return;
+        return ATRewardedVideoJSSDK.checkValidAdCaches(this.curPlacementId);
+    },
+
     /** 
      * 激励视频加载完毕
      * @param {*} placementId 广告位id

BIN
build/jsb-link/assets/main/index.jsc


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
build/jsb-link/assets/resources/config.json


+ 1 - 1
build/jsb-link/assets/resources/native/9e/9ed98385-f23f-41b7-a2bc-27a1d4ad9fd6.manifest

@@ -1 +1 @@
-{"version":"1.0.13","packageUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/","remoteManifestUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/project.manifest","remoteVersionUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/version.manifest"}
+{"version":"1.0.14","packageUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/","remoteManifestUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/project.manifest","remoteVersionUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/version.manifest"}

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
build/jsb-link/assets/resources/native/a8/a81eb395-718d-4f3b-958c-cb871f7dd5fa.manifest


BIN
build/jsb-link/frameworks/runtime-src/proj.android-studio/.idea/caches/build_file_checksums.ser


BIN
build/jsb-link/frameworks/runtime-src/proj.android-studio/app/libs/topon/anythink_cocosjs_bridge.aar


+ 91 - 41
build/jsb-link/js backups (useful for debugging)/main.index.js

@@ -629,6 +629,10 @@ checkAdStatus: function(t) {
 cc.log("Android-checkAdStatus:" + t);
 return jsb.reflection.callStaticMethod(a, "checkAdStatus", "(Ljava/lang/String;)Ljava/lang/String;", t);
 },
+checkValidAdCaches: function(t) {
+cc.log("Android-checkValidAdCaches:" + t);
+return jsb.reflection.callStaticMethod(a, "checkValidAdCaches", "(Ljava/lang/String;)Ljava/lang/String;", t);
+},
 showAd: function(t) {
 cc.log("Android-rv_showAd:" + t);
 jsb.reflection.callStaticMethod(a, "show", "(Ljava/lang/String;)V", t);
@@ -1784,6 +1788,9 @@ if (null != this.proxy) return !!ATRewardedVideoJSSDK.hasAdReady(this.placementI
 checkAdStatus: function() {
 if (null != this.proxy) return ATRewardedVideoJSSDK.checkAdStatus(this.placementID());
 },
+checkValidAdCaches: function() {
+if (null != this.proxy) return ATRewardedVideoJSSDK.checkValidAdCaches(this.curPlacementId);
+},
 onRewardedVideoAdLoaded: function(t) {
 console.log("AnyThinkRewardedVideo::onRewardedVideoAdLoaded(" + t + ")");
 null != this.proxy && this.proxy.onRewardedVideoAdLoaded(t);
@@ -1962,6 +1969,8 @@ e.reawardAdState = 0;
 e.ifLoadShow = !1;
 e.canGet = !1;
 e.singleClick = !1;
+e.requestIdArr = [];
+e.tagIdArr = [];
 return e;
 }
 e.prototype.init = function() {
@@ -1993,6 +2002,9 @@ this.loadAd();
 e.prototype.checkAdStatus = function() {
 return this.ATRewardVideoJS.checkAdStatus();
 };
+e.prototype.checkValidAdCaches = function() {
+return this.ATRewardVideoJS.checkValidAdCaches();
+};
 e.prototype.onRewardedVideoAdLoaded = function() {
 console.log("ATRewardVideo  成功", this.hasAdReady(), c[this.reawardAdState]);
 this.reawardAdState = c.LoadSuccess;
@@ -2006,6 +2018,19 @@ adsource_id: a.adsource_id,
 adsource_price: a.adsource_price
 };
 gData.adData.savePreLoadEcpm(o);
+var n = this.checkValidAdCaches();
+console.log("AnyThinkRewardedVideoDemo>>  adStatusCaches ", n);
+if (n) {
+var i = JSON.parse(n);
+if (i.adInfoList) for (var r = JSON.parse(i.adInfoList), s = r.length, l = 0; l < s; l++) {
+var p = r[l];
+if (p.ext_info) {
+p.ext_info.request_id && -1 == this.requestIdArr.indexOf(p.ext_info.request_id) && this.requestIdArr.push(p.ext_info.request_id);
+p.ext_info.tag_id && -1 == this.tagIdArr.indexOf(p.ext_info.tag_id) && this.tagIdArr.push(p.ext_info.tag_id);
+}
+}
+}
+console.log("AnyThinkRewardedVideoDemo>>  this.requestIdArr ", this.requestIdArr.toString());
 };
 e.prototype.onRewardedVideoAdFailed = function() {
 this.ifLoadShow = !1;
@@ -2024,6 +2049,7 @@ o ? o++ : o = 1;
 mk.storage.setStorage("ad_videoEcpm", o);
 o <= 300 && (o <= 50 ? mk.data.sendDataEventValue(s.DataEventId.ad_videoEcpm, "ad_video_ecpm" + o, a.adsource_price) : o % 10 == 0 && mk.data.sendDataEventValue(s.DataEventId.ad_videoEcpm, "ad_video_ecpm" + o, a.adsource_price));
 this.singleClick = !0;
+this.loadAd();
 };
 e.prototype.onRewardedVideoAdPlayEnd = function() {};
 e.prototype.onRewardedVideoAdPlayFailed = function(t, e, a) {
@@ -2035,31 +2061,50 @@ gData.adData.updateADLog(5, t, o);
 p.default.getInstance().watchVideoAdCallBack(p.AdPlayStateType.PlayFail);
 this.reawardAdState = c.LoadFail;
 };
-e.prototype.onRewardedVideoAdClosed = function() {
+e.prototype.onRewardedVideoAdClosed = function(t, e) {
 return i(this, void 0, void 0, function() {
-var t = this;
-return r(this, function(e) {
-switch (e.label) {
+var t, a, o, n;
+return r(this, function(i) {
+switch (i.label) {
 case 0:
 if (this.canGet) {
 p.default.getInstance().watchVideoAdCallBack(p.AdPlayStateType.WatchEnd);
 mk.data.sendDataEvent(s.DataEventId.video_end, mk.ad.videoAdType);
+t = JSON.parse(e);
+a = "";
+o = "";
+if (t.ext_info) {
+t.ext_info.request_id && (a = t.ext_info.request_id);
+t.ext_info.tag_id && (o = t.ext_info.tag_id);
+}
+if ("" != a) if (-1 != (n = this.requestIdArr.indexOf(a))) {
+console.log("AnyThinkRewardedVideoDemo>>  delRequest_id ", a);
+this.requestIdArr.splice(n, 1);
+console.log("AnyThinkRewardedVideoDemo>>  After this.requestIdArr ", this.requestIdArr.toString());
+} else {
+mk.data.sendDataEvent("illegalAdRequestId", t.adsource_id + "_" + a + "_" + gData.loginData.uin + "_" + gData.appData.appVersion);
+mk.data.sendXYEvent("illegalAdRequestId", t.adsource_id + "_" + a + "_" + gData.loginData.uin + "_" + gData.appData.appVersion);
+console.log("AnyThinkRewardedVideoDemo>>  illegalAdRequestId ", t.adsource_id + "_" + a);
+} else console.log("AnyThinkRewardedVideoDemo>>  request_id is Empty ");
+if ("" != o) if (-1 != (n = this.tagIdArr.indexOf(o))) {
+console.log("AnyThinkRewardedVideoDemo>>  delTag_id ", o);
+this.tagIdArr.splice(n, 1);
+console.log("AnyThinkRewardedVideoDemo>>  After this.tagIdArr ", this.tagIdArr.toString());
+} else {
+mk.data.sendDataEvent("illegalAdTagId", t.adsource_id + "_" + o + "_" + gData.loginData.uin + "_" + gData.appData.appVersion);
+mk.data.sendXYEvent("illegalAdTagId", t.adsource_id + "_" + o + "_" + gData.loginData.uin + "_" + gData.appData.appVersion);
+console.log("AnyThinkRewardedVideoDemo>>  illegalAdTagId ", t.adsource_id + "_" + o);
+} else console.log("AnyThinkRewardedVideoDemo>>  tag_id is Empty ");
 } else p.default.getInstance().watchVideoAdCallBack(p.AdPlayStateType.Cancel);
 this.canGet = !1;
 this.reawardAdState = c.PlayEnd;
-return this.singleClick ? [ 4, gData.warnTipData.getUserShutdownAds(function() {
-t.loadAd();
-}) ] : [ 3, 2 ];
+return this.singleClick ? [ 4, gData.warnTipData.getUserShutdownAds(function() {}) ] : [ 3, 2 ];
 
 case 1:
-e.sent();
-return [ 3, 3 ];
+i.sent();
+return [ 3, 2 ];
 
 case 2:
-this.loadAd();
-e.label = 3;
-
-case 3:
 return [ 2 ];
 }
 });
@@ -2160,6 +2205,11 @@ if (null != n && null != n) return n.checkAdStatus(t);
 cc.log("You must run on Android or iOS.");
 return "";
 },
+checkValidAdCaches: function(t) {
+if (null != n && null != n) return n.checkValidAdCaches(t);
+cc.log("You must run on Android or iOS.");
+return "";
+},
 showAd: function(t) {
 null != n && null != n ? n.showAd(t) : cc.log("You must run on Android or iOS.");
 },
@@ -14696,21 +14746,21 @@ Object.defineProperty(a, "__esModule", {
 value: !0
 });
 a.Fun = void 0;
-var o, n = t("./AppData"), i = t("./GameData"), r = t("./HttpData"), c = t("./LoginData"), s = t("./StorageData"), l = t("./WechatData"), p = t("./module/HelpData"), u = t("./module/TurnableData"), d = t("./module/SignData"), h = t("./module/FissionData"), f = t("./AdData"), y = t("./module/RewardData"), g = t("./module/CashNormalData"), m = t("./module/ReceiptNoticeData"), _ = t("./module/BlessingBagData"), v = t("./module/CashProData"), D = t("./module/RedBagCashData"), b = t("./module/RedCodeData"), w = t("./module/MoreGameData"), k = t("./module/SettingData"), S = t("./module/GuideData"), P = t("./module/GuideWeakData"), A = t("./ConfigData"), I = t("./module/NewCashUIData"), T = t("../../before/view/data/ADUnlockData"), O = t("../../before/view/data/PlantData"), C = t("../../before/main/FarmSystem"), R = t("../../before/view/data/HarvestData"), x = t("../../before/view/data/ADClearSickData"), N = t("../../before/main/PastureSystem"), M = t("../../before/main/FactorySystem"), F = t("./module/FarmMapData"), B = t("./module/GradeRewardData"), j = t("./module/WalletCashOutData"), L = t("./module/LineUpUIData"), E = t("./module/WarnTipData"), U = t("./module/SafeDepositBoxData"), G = t("./module/CashOutBillData"), V = function() {
+var o, n = t("./AppData"), i = t("./GameData"), r = t("./HttpData"), c = t("./LoginData"), s = t("./StorageData"), l = t("./WechatData"), p = t("./module/HelpData"), u = t("./module/TurnableData"), d = t("./module/SignData"), h = t("./module/FissionData"), f = t("./AdData"), y = t("./module/RewardData"), g = t("./module/CashNormalData"), m = t("./module/ReceiptNoticeData"), _ = t("./module/BlessingBagData"), v = t("./module/CashProData"), D = t("./module/RedBagCashData"), b = t("./module/RedCodeData"), w = t("./module/MoreGameData"), k = t("./module/SettingData"), S = t("./module/GuideData"), A = t("./module/GuideWeakData"), P = t("./ConfigData"), I = t("./module/NewCashUIData"), T = t("../../before/view/data/ADUnlockData"), O = t("../../before/view/data/PlantData"), C = t("../../before/main/FarmSystem"), R = t("../../before/view/data/HarvestData"), x = t("../../before/view/data/ADClearSickData"), N = t("../../before/main/PastureSystem"), M = t("../../before/main/FactorySystem"), F = t("./module/FarmMapData"), B = t("./module/GradeRewardData"), j = t("./module/WalletCashOutData"), L = t("./module/LineUpUIData"), E = t("./module/WarnTipData"), U = t("./module/SafeDepositBoxData"), G = t("./module/CashOutBillData"), V = function() {
 function t() {
 this.init();
 }
 t.prototype.init = function() {
 this.appData = new n.AppData();
 this.loginData = new c.LoginData();
-this.configData = new A.ConfigData();
+this.configData = new P.ConfigData();
 this.gameData = new i.GameData();
 this.wechatData = new l.WechatData();
 this.httpData = new r.HttpData();
 this.adData = new f.AdData();
 this.storageData = new s.StorageData();
 this.guideData = new S.GuideData();
-this.guideWeakData = new P.default();
+this.guideWeakData = new A.default();
 this.reward = new y.RewardData();
 this.help = new p.HelpData();
 this.turnable = new u.TurnableData();
@@ -25014,7 +25064,7 @@ cc._RF.push(e, "f0038hKHC9Nf5+ipaUV9rc5", "MKSystem");
 Object.defineProperty(a, "__esModule", {
 value: !0
 });
-var o = t("../sdk/BuglySDK"), n = t("../utils/FileUtil"), i = t("../utils/TimeUtil"), r = t("./DataSystem"), c = t("./HttpSystem"), s = t("../utils/LoadResUtil"), l = t("../utils/LogUtil"), p = t("../utils/EncryptUtil"), u = t("../utils/GameUtil"), d = t("../utils/StorageUtil"), h = t("./TimerSystem"), f = t("./EventSystem"), y = t("../utils/MathUtil"), g = t("./AdSystem"), m = t("./JsbSystem"), _ = t("./AudioSystem"), v = t("./PoolSystem"), D = t("../utils/TweenUtil"), b = t("./GuideSystem"), w = t("../utils/StringUtil"), k = t("../../game/component/SetGray"), S = t("../../game/component/NumberAnim"), P = t("../sdk/aliRisk/AliRiskManager"), A = t("../sdk/ad/toppon/AnyThinkAdsMgr/ATSDKMgr"), I = t("../sdk/shuzilm/ShuzilmM"), T = t("../sdk/tongdun/TongdunM"), O = function() {
+var o = t("../sdk/BuglySDK"), n = t("../utils/FileUtil"), i = t("../utils/TimeUtil"), r = t("./DataSystem"), c = t("./HttpSystem"), s = t("../utils/LoadResUtil"), l = t("../utils/LogUtil"), p = t("../utils/EncryptUtil"), u = t("../utils/GameUtil"), d = t("../utils/StorageUtil"), h = t("./TimerSystem"), f = t("./EventSystem"), y = t("../utils/MathUtil"), g = t("./AdSystem"), m = t("./JsbSystem"), _ = t("./AudioSystem"), v = t("./PoolSystem"), D = t("../utils/TweenUtil"), b = t("./GuideSystem"), w = t("../utils/StringUtil"), k = t("../../game/component/SetGray"), S = t("../../game/component/NumberAnim"), A = t("../sdk/aliRisk/AliRiskManager"), P = t("../sdk/ad/toppon/AnyThinkAdsMgr/ATSDKMgr"), I = t("../sdk/shuzilm/ShuzilmM"), T = t("../sdk/tongdun/TongdunM"), O = function() {
 function t() {}
 Object.defineProperty(t.prototype, "time", {
 get: function() {
@@ -25102,7 +25152,7 @@ configurable: !0
 });
 Object.defineProperty(t.prototype, "ad", {
 get: function() {
-return this._ad || (this._ad = new g.default(A.default.getInstance()));
+return this._ad || (this._ad = new g.default(P.default.getInstance()));
 },
 enumerable: !1,
 configurable: !0
@@ -25158,7 +25208,7 @@ configurable: !0
 });
 Object.defineProperty(t.prototype, "aliRiskManager", {
 get: function() {
-return this._aliRiskManager || (this._aliRiskManager = new P.default());
+return this._aliRiskManager || (this._aliRiskManager = new A.default());
 },
 enumerable: !1,
 configurable: !0
@@ -40032,30 +40082,30 @@ var c = t[s = n + r];
 t[s] = 16711935 & (c << 8 | c >>> 24) | 4278255360 & (c << 24 | c >>> 8);
 }
 r = this._hash.words;
-var s = t[n + 0], l = (c = t[n + 1], t[n + 2]), u = t[n + 3], d = t[n + 4], h = t[n + 5], f = t[n + 6], y = t[n + 7], g = t[n + 8], m = t[n + 9], _ = t[n + 10], v = t[n + 11], D = t[n + 12], b = t[n + 13], w = t[n + 14], k = t[n + 15], S = e(S = r[0], I = r[1], A = r[2], P = r[3], s, 7, p[0]), P = e(P, S, I, A, c, 12, p[1]), A = e(A, P, S, I, l, 17, p[2]), I = e(I, A, P, S, u, 22, p[3]);
-S = e(S, I, A, P, d, 7, p[4]), P = e(P, S, I, A, h, 12, p[5]), A = e(A, P, S, I, f, 17, p[6]), 
-I = e(I, A, P, S, y, 22, p[7]), S = e(S, I, A, P, g, 7, p[8]), P = e(P, S, I, A, m, 12, p[9]), 
-A = e(A, P, S, I, _, 17, p[10]), I = e(I, A, P, S, v, 22, p[11]), S = e(S, I, A, P, D, 7, p[12]), 
-P = e(P, S, I, A, b, 12, p[13]), A = e(A, P, S, I, w, 17, p[14]), S = a(S, I = e(I, A, P, S, k, 22, p[15]), A, P, c, 5, p[16]), 
-P = a(P, S, I, A, f, 9, p[17]), A = a(A, P, S, I, v, 14, p[18]), I = a(I, A, P, S, s, 20, p[19]), 
-S = a(S, I, A, P, h, 5, p[20]), P = a(P, S, I, A, _, 9, p[21]), A = a(A, P, S, I, k, 14, p[22]), 
-I = a(I, A, P, S, d, 20, p[23]), S = a(S, I, A, P, m, 5, p[24]), P = a(P, S, I, A, w, 9, p[25]), 
-A = a(A, P, S, I, u, 14, p[26]), I = a(I, A, P, S, g, 20, p[27]), S = a(S, I, A, P, b, 5, p[28]), 
-P = a(P, S, I, A, l, 9, p[29]), A = a(A, P, S, I, y, 14, p[30]), S = o(S, I = a(I, A, P, S, D, 20, p[31]), A, P, h, 4, p[32]), 
-P = o(P, S, I, A, g, 11, p[33]), A = o(A, P, S, I, v, 16, p[34]), I = o(I, A, P, S, w, 23, p[35]), 
-S = o(S, I, A, P, c, 4, p[36]), P = o(P, S, I, A, d, 11, p[37]), A = o(A, P, S, I, y, 16, p[38]), 
-I = o(I, A, P, S, _, 23, p[39]), S = o(S, I, A, P, b, 4, p[40]), P = o(P, S, I, A, s, 11, p[41]), 
-A = o(A, P, S, I, u, 16, p[42]), I = o(I, A, P, S, f, 23, p[43]), S = o(S, I, A, P, m, 4, p[44]), 
-P = o(P, S, I, A, D, 11, p[45]), A = o(A, P, S, I, k, 16, p[46]), S = i(S, I = o(I, A, P, S, l, 23, p[47]), A, P, s, 6, p[48]), 
-P = i(P, S, I, A, y, 10, p[49]), A = i(A, P, S, I, w, 15, p[50]), I = i(I, A, P, S, h, 21, p[51]), 
-S = i(S, I, A, P, D, 6, p[52]), P = i(P, S, I, A, u, 10, p[53]), A = i(A, P, S, I, _, 15, p[54]), 
-I = i(I, A, P, S, c, 21, p[55]), S = i(S, I, A, P, g, 6, p[56]), P = i(P, S, I, A, k, 10, p[57]), 
-A = i(A, P, S, I, f, 15, p[58]), I = i(I, A, P, S, b, 21, p[59]), S = i(S, I, A, P, d, 6, p[60]), 
-P = i(P, S, I, A, v, 10, p[61]), A = i(A, P, S, I, l, 15, p[62]), I = i(I, A, P, S, m, 21, p[63]);
+var s = t[n + 0], l = (c = t[n + 1], t[n + 2]), u = t[n + 3], d = t[n + 4], h = t[n + 5], f = t[n + 6], y = t[n + 7], g = t[n + 8], m = t[n + 9], _ = t[n + 10], v = t[n + 11], D = t[n + 12], b = t[n + 13], w = t[n + 14], k = t[n + 15], S = e(S = r[0], I = r[1], P = r[2], A = r[3], s, 7, p[0]), A = e(A, S, I, P, c, 12, p[1]), P = e(P, A, S, I, l, 17, p[2]), I = e(I, P, A, S, u, 22, p[3]);
+S = e(S, I, P, A, d, 7, p[4]), A = e(A, S, I, P, h, 12, p[5]), P = e(P, A, S, I, f, 17, p[6]), 
+I = e(I, P, A, S, y, 22, p[7]), S = e(S, I, P, A, g, 7, p[8]), A = e(A, S, I, P, m, 12, p[9]), 
+P = e(P, A, S, I, _, 17, p[10]), I = e(I, P, A, S, v, 22, p[11]), S = e(S, I, P, A, D, 7, p[12]), 
+A = e(A, S, I, P, b, 12, p[13]), P = e(P, A, S, I, w, 17, p[14]), S = a(S, I = e(I, P, A, S, k, 22, p[15]), P, A, c, 5, p[16]), 
+A = a(A, S, I, P, f, 9, p[17]), P = a(P, A, S, I, v, 14, p[18]), I = a(I, P, A, S, s, 20, p[19]), 
+S = a(S, I, P, A, h, 5, p[20]), A = a(A, S, I, P, _, 9, p[21]), P = a(P, A, S, I, k, 14, p[22]), 
+I = a(I, P, A, S, d, 20, p[23]), S = a(S, I, P, A, m, 5, p[24]), A = a(A, S, I, P, w, 9, p[25]), 
+P = a(P, A, S, I, u, 14, p[26]), I = a(I, P, A, S, g, 20, p[27]), S = a(S, I, P, A, b, 5, p[28]), 
+A = a(A, S, I, P, l, 9, p[29]), P = a(P, A, S, I, y, 14, p[30]), S = o(S, I = a(I, P, A, S, D, 20, p[31]), P, A, h, 4, p[32]), 
+A = o(A, S, I, P, g, 11, p[33]), P = o(P, A, S, I, v, 16, p[34]), I = o(I, P, A, S, w, 23, p[35]), 
+S = o(S, I, P, A, c, 4, p[36]), A = o(A, S, I, P, d, 11, p[37]), P = o(P, A, S, I, y, 16, p[38]), 
+I = o(I, P, A, S, _, 23, p[39]), S = o(S, I, P, A, b, 4, p[40]), A = o(A, S, I, P, s, 11, p[41]), 
+P = o(P, A, S, I, u, 16, p[42]), I = o(I, P, A, S, f, 23, p[43]), S = o(S, I, P, A, m, 4, p[44]), 
+A = o(A, S, I, P, D, 11, p[45]), P = o(P, A, S, I, k, 16, p[46]), S = i(S, I = o(I, P, A, S, l, 23, p[47]), P, A, s, 6, p[48]), 
+A = i(A, S, I, P, y, 10, p[49]), P = i(P, A, S, I, w, 15, p[50]), I = i(I, P, A, S, h, 21, p[51]), 
+S = i(S, I, P, A, D, 6, p[52]), A = i(A, S, I, P, u, 10, p[53]), P = i(P, A, S, I, _, 15, p[54]), 
+I = i(I, P, A, S, c, 21, p[55]), S = i(S, I, P, A, g, 6, p[56]), A = i(A, S, I, P, k, 10, p[57]), 
+P = i(P, A, S, I, f, 15, p[58]), I = i(I, P, A, S, b, 21, p[59]), S = i(S, I, P, A, d, 6, p[60]), 
+A = i(A, S, I, P, v, 10, p[61]), P = i(P, A, S, I, l, 15, p[62]), I = i(I, P, A, S, m, 21, p[63]);
 r[0] = r[0] + S | 0;
 r[1] = r[1] + I | 0;
-r[2] = r[2] + A | 0;
-r[3] = r[3] + P | 0;
+r[2] = r[2] + P | 0;
+r[3] = r[3] + A | 0;
 },
 _doFinalize: function() {
 var e = this._data, a = e.words, o = 8 * this._nDataBytes, n = 8 * e.sigBytes;

+ 6 - 5
packages-hot-update/cfg.json

@@ -1,6 +1,6 @@
 {
-    "version": "1.0.13",
-    "serverRootDir": "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/",
+    "version": "1.0.14",
+    "serverRootDir": "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/",
     "resourceRootDir": "D:\\mokaszProjects\\team1_nc\\build\\jsb-link",
     "genManifestDir": "",
     "hotAddressArray": [
@@ -10,9 +10,10 @@
         "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kxnlyTest/baseRemote/",
         "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kxnlyJsb/baseRemote/",
         "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsfTest/baseRemote/",
-        "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/"
+        "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/",
+        "https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/"
     ],
-    "buildTime": 1642827423478,
-    "genTime": 1642827423478,
+    "buildTime": 1643349896462,
+    "genTime": 1643349896462,
     "genVersion": null
 }

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
packages-hot-update/manifest/project.manifest


+ 1 - 1
packages-hot-update/manifest/version.manifest

@@ -1 +1 @@
-{"version":"1.0.13","packageUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/","remoteManifestUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/project.manifest","remoteVersionUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote/version.manifest"}
+{"version":"1.0.14","packageUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/","remoteManifestUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/project.manifest","remoteVersionUrl":"https://xcx-box.oss-cn-hangzhou.aliyuncs.com/hotgame/kncdsf/baseRemote1/version.manifest"}

BIN
packages-hot-update/versions/ver_1_0.14.zip


برخی فایل ها در این مقایسه diff نمایش داده نمی شوند زیرا تعداد فایل ها بسیار زیاد است