update: version
parent
fa3ec5adef
commit
338c886ef6
|
|
@ -101,12 +101,18 @@ namespace Guru
|
|||
public override string ToString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.AppendLine($"------- Custom init Config -------");
|
||||
sb.AppendLine($"------- Custom InitConfig -------");
|
||||
sb.AppendLine($"\t UseCustomConsent: {UseCustomConsent}");
|
||||
sb.AppendLine($"\t AutoLoadWhenAdsReady: {AutoLoadWhenAdsReady}");
|
||||
sb.AppendLine($"\t IAPEnabled: {IAPEnabled}");
|
||||
sb.AppendLine($"\tShowDebugLog: {DebugMode}");
|
||||
sb.AppendLine($"------- Custom init Config -------");
|
||||
sb.AppendLine($"\t AutoNotificationPermission: {AutoNotificationPermission}");
|
||||
sb.AppendLine($"\t AutoRecordFinishedLevels: {AutoRecordFinishedLevels}");
|
||||
sb.AppendLine($"\t CustomServiceKey: {CustomServiceKey}");
|
||||
sb.AppendLine($"\t BannerBackgroundColor: {BannerBackgroundColor}");
|
||||
sb.AppendLine($"\t IsBuyNoAds: {IsBuyNoAds}");
|
||||
sb.AppendLine($"\t DebugMode: {DebugMode}");
|
||||
sb.AppendLine($"\t DefaultRemote: Count: {DefaultRemoteData.Count}");
|
||||
sb.AppendLine($"------- Custom InitConfig -------");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ namespace Guru
|
|||
|
||||
#if UNITY_ANDROID
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取 AndroidSDK 的系统版本号
|
||||
/// </summary>
|
||||
|
|
@ -76,14 +75,8 @@ namespace Guru
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -9,8 +9,10 @@ namespace Guru
|
|||
|
||||
public partial class GuruSDK: MonoBehaviour
|
||||
{
|
||||
// SDK_VERSION
|
||||
public const string Version = "1.0.13";
|
||||
|
||||
public const string Version = "1.0.12"; //SDK_VERSION
|
||||
// Const
|
||||
public const string Tag = "[Guru]";
|
||||
public const string ServicesConfigKey = "guru_services";
|
||||
|
||||
|
|
@ -754,7 +756,6 @@ namespace Guru
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue