From 2ee3e8f2c522ee90afb8edf05e7371625bb51093 Mon Sep 17 00:00:00 2001 From: JieLing Date: Mon, 14 Sep 2020 20:04:06 +0800 Subject: [PATCH] =?UTF-8?q?android=E6=89=93=E5=8C=85=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Editor/AutoPack.cs | 3 ++- Assets/LuaFramework/Scripts/Framework/App.cs | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Assets/Editor/AutoPack.cs b/Assets/Editor/AutoPack.cs index 07acf770cf..1aecad3023 100644 --- a/Assets/Editor/AutoPack.cs +++ b/Assets/Editor/AutoPack.cs @@ -134,7 +134,8 @@ public class AutoPack : EditorWindow buildPlayerOptions.target = BuildTarget.iOS; // 调用开始打包 BuildPipeline.BuildPlayer(buildPlayerOptions); - + Debug.Log("打包完成"); + Debug.Log("导出工程路径:"+ outPath); if (Directory.Exists(mainXcodePath)) { Debug.Log("替换xcode资源"); diff --git a/Assets/LuaFramework/Scripts/Framework/App.cs b/Assets/LuaFramework/Scripts/Framework/App.cs index 71785e2e83..343bc0ecfc 100644 --- a/Assets/LuaFramework/Scripts/Framework/App.cs +++ b/Assets/LuaFramework/Scripts/Framework/App.cs @@ -275,6 +275,7 @@ public class App : UnitySingleton /// void OnApplicationFocus(bool hasFocus) { + Debug.Log("App.cs OnApplicationFocus"); Util.CallMethod("Game", "OnApplicationFocus", hasFocus); } @@ -284,6 +285,7 @@ public class App : UnitySingleton /// void OnApplicationPause(bool pauseStatus) { + Debug.Log("App.cs OnApplicationPause"); Util.CallMethod("Game", "OnApplicationPause", pauseStatus); } @@ -292,6 +294,7 @@ public class App : UnitySingleton /// void OnApplicationQuit() { + Debug.Log("App.cs OnApplicationQuit"); Util.CallMethod("Game", "OnApplicationQuit"); }