update: 隐藏 KeyStore 配置界面
parent
d3cf9a1b63
commit
2217ab8e46
|
|
@ -100,10 +100,10 @@ namespace Guru.Editor
|
||||||
{
|
{
|
||||||
// 对于空行和空值直接跳过
|
// 对于空行和空值直接跳过
|
||||||
if (IsInvalidLine(line)) return;
|
if (IsInvalidLine(line)) return;
|
||||||
|
|
||||||
string value = "";
|
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))
|
if (GetValue(line, "app_id", out value))
|
||||||
{
|
{
|
||||||
|
|
@ -157,7 +157,7 @@ namespace Guru.Editor
|
||||||
{
|
{
|
||||||
settings.app_settings.custom_keystore = GetBool(value);
|
settings.app_settings.custom_keystore = GetBool(value);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// AdjustSettings 填充
|
/// AdjustSettings 填充
|
||||||
|
|
|
||||||
|
|
@ -89,10 +89,10 @@ namespace Guru.Editor
|
||||||
|
|
||||||
InitPushIcon();
|
InitPushIcon();
|
||||||
|
|
||||||
if (_servicesConfig?.UseCustomKeystore() ?? false)
|
// if (_servicesConfig?.UseCustomKeystore() ?? false)
|
||||||
{
|
// {
|
||||||
InitCustomKeystore();
|
// InitCustomKeystore();
|
||||||
}
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -419,11 +419,11 @@ namespace Guru.Editor
|
||||||
GUI_PushIconMaker();
|
GUI_PushIconMaker();
|
||||||
|
|
||||||
// Keystore
|
// Keystore
|
||||||
if (_servicesConfig != null && _servicesConfig.UseCustomKeystore())
|
// if (_servicesConfig != null && _servicesConfig.UseCustomKeystore())
|
||||||
{
|
// {
|
||||||
GUILayout.Space(10);
|
// GUILayout.Space(10);
|
||||||
GUI_CustomKeystore();
|
// GUI_CustomKeystore();
|
||||||
}
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue