diff --git a/Editor/GuruManager/Helper/GuruServiceConverterHelper.cs b/Editor/GuruManager/Helper/GuruServiceConverterHelper.cs index 6ab3b8c..f7dbf14 100644 --- a/Editor/GuruManager/Helper/GuruServiceConverterHelper.cs +++ b/Editor/GuruManager/Helper/GuruServiceConverterHelper.cs @@ -100,10 +100,10 @@ namespace Guru.Editor { // 对于空行和空值直接跳过 if (IsInvalidLine(line)) return; - + string value = ""; - if(settings.app_settings == null) settings.app_settings = new GuruAppSettings(); - + if (settings.app_settings == null) settings.app_settings = new GuruAppSettings(); + // 拾取值和注入 if (GetValue(line, "app_id", out value)) { @@ -157,7 +157,7 @@ namespace Guru.Editor { settings.app_settings.custom_keystore = GetBool(value); } - + } /// /// AdjustSettings 填充 diff --git a/Editor/GuruManager/Manager/GuruSDKManager.cs b/Editor/GuruManager/Manager/GuruSDKManager.cs index 3d19fb5..02660e5 100644 --- a/Editor/GuruManager/Manager/GuruSDKManager.cs +++ b/Editor/GuruManager/Manager/GuruSDKManager.cs @@ -89,10 +89,10 @@ namespace Guru.Editor InitPushIcon(); - if (_servicesConfig?.UseCustomKeystore() ?? false) - { - InitCustomKeystore(); - } + // if (_servicesConfig?.UseCustomKeystore() ?? false) + // { + // InitCustomKeystore(); + // } } @@ -419,11 +419,11 @@ namespace Guru.Editor GUI_PushIconMaker(); // Keystore - if (_servicesConfig != null && _servicesConfig.UseCustomKeystore()) - { - GUILayout.Space(10); - GUI_CustomKeystore(); - } + // if (_servicesConfig != null && _servicesConfig.UseCustomKeystore()) + // { + // GUILayout.Space(10); + // GUI_CustomKeystore(); + // } }