From 64e47a20c66cb196fac93f8d82d02e77306e7dd2 Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期一, 19 十一月 2018 20:37:13 +0800
Subject: [PATCH] update 刀剑笑新传IOS
---
Project/app/src/game_822055139/java/com/secondworld/univeralsdk/H2EngineSDK.java | 28 +++++++++++++++++++++-------
1 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/Project/app/src/game_822055139/java/com/secondworld/univeralsdk/H2EngineSDK.java b/Project/app/src/game_822055139/java/com/secondworld/univeralsdk/H2EngineSDK.java
index b1c7c64..f1ddd9f 100644
--- a/Project/app/src/game_822055139/java/com/secondworld/univeralsdk/H2EngineSDK.java
+++ b/Project/app/src/game_822055139/java/com/secondworld/univeralsdk/H2EngineSDK.java
@@ -54,6 +54,9 @@
case CodeU2A.AssetCopy:
FileUtil.copyAssets(_activity);
break;
+ case CodeU2A.CopyOneAsset:
+ FileUtil.copy(_activity, _json.getString("fileName"));
+ break;
case CodeU2A.BatteryListenStart:
BatteryUtil.getInstance().start(_activity);
break;
@@ -99,6 +102,7 @@
_json.getString("orderId"),
(float) _json.getDouble("mount"),
_json.getString("cpInfo"));
+ FreePlatformUtil.getInstace().payProcessing = true;
break;
case CodeU2A.PayFinished:
Tracking.setPayment(_json.getString("orderID"),
@@ -108,16 +112,17 @@
int _money = (int) (_json.getDouble("money"));
- LogUtil.i(TAG, "閲戦: " + _money);
-
EventUtils.setPurchase("",
- _json.getString("title"),
- _json.getString("cpInfo"),
+ "",
+ "",
1,
_json.getString("payType"),
_json.getString("moneyType"),
true,
_money);
+
+ FreePlatformUtil.getInstace().payProcessing = false;
+
break;
case CodeU2A.ClientPackage:
// 鍒濆鍖栫儹浜�
@@ -302,9 +307,6 @@
// ------------------------------- 鑷敱SDK -------------------------------
FreePlatformUtil.getInstace().init(activity);
-
- // ------------------------------- 鐚�砈DK -------------------------------
- FreePlatformUtil.getInstace().init(activity);
// ------------------------------- 鏋佸厜鎺ㄩ�� -------------------------------
JPushInterface.setDebugMode(true);
JPushInterface.init(activity);
@@ -357,6 +359,10 @@
FreePlatform.getInstance().onCreate();
}
+ public static void onWindowFocusChanged(boolean b)
+ {
+ }
+
public static void onNewIntent(final Activity activity, final Intent intent)
{
}
@@ -389,6 +395,14 @@
{
FreePlatform.getInstance().onResume();
TeaAgent.onResume(activity);
+
+ if(FreePlatformUtil.getInstace().payProcessing)
+ {
+ Map<String, Object> _msgStruct = new HashMap<>();
+ _msgStruct.put("code", CodeA2U.FreePlatformPayCancel);
+ UniversalUtil.sendMessageToUnity(_msgStruct);
+ FreePlatformUtil.getInstace().payProcessing = false;
+ }
}
public static void onStop(final Activity activity)
--
Gitblit v1.8.0