From 483fcf9a26aee99494638444b11cbbafd1689419 Mon Sep 17 00:00:00 2001 From: xiaoyi Date: Fri, 9 Apr 2021 19:05:17 +0800 Subject: [PATCH] fix(compile): fix apple sign in intercept compile --- Editor/TapBootstrapIOSProcessor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Editor/TapBootstrapIOSProcessor.cs b/Editor/TapBootstrapIOSProcessor.cs index 54c7fdb..931cfd3 100644 --- a/Editor/TapBootstrapIOSProcessor.cs +++ b/Editor/TapBootstrapIOSProcessor.cs @@ -59,7 +59,7 @@ namespace TapTap.Bootstrap.Editor var appleSignInEnableKey = "com.apple.developer.applesignin"; if (string.IsNullOrEmpty(appleSignInEnable) || appleSignInEnable.Equals("false")) { - Debug.LogError("TapSDK can't open Apple SignIn in XCode, Please Check Info.plist."); + Debug.LogWarning("TapSDK can't open Apple SignIn in XCode, Please Check Info.plist."); return; } @@ -67,7 +67,7 @@ namespace TapTap.Bootstrap.Editor var tempEntitlements = new PlistDocument(); if (!((tempEntitlements.root[appleSignInEnableKey] = new PlistElementArray()) is PlistElementArray arrSigninWithApple)) { - Debug.LogError($"TapSDK can't find {appleSignInEnableKey}."); + Debug.LogWarning($"TapSDK can't find {appleSignInEnableKey}."); return; } arrSigninWithApple.values.Add(new PlistElementString("Default"));