From 2028452f0594adc128c25c159eb74938ec5a2c96 Mon Sep 17 00:00:00 2001 From: xiaohang Date: Wed, 3 Apr 2024 12:58:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9TangleData=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E8=BF=9B=E8=A1=8C=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/GuruSDKServiceImpBase.cs | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/Runtime/GuruSDKServiceImpBase.cs b/Runtime/GuruSDKServiceImpBase.cs index bcf0e65..6487730 100644 --- a/Runtime/GuruSDKServiceImpBase.cs +++ b/Runtime/GuruSDKServiceImpBase.cs @@ -13,27 +13,9 @@ namespace GuruService public abstract bool IsDebugMode { get; } public abstract Dictionary GetDefaultRemoteData(); - public virtual byte[] GetGooglePlayTangleData() - { - if (!IsIAPEnabled) return null; - -#if UNITY_EDITOR - return null; -#else - return GooglePlayTangle.Data(); -#endif - } + public abstract byte[] GetGooglePlayTangleData(); - public virtual byte[] GetAppleTangleData() - { - if (!IsIAPEnabled) return null; - -#if UNITY_EDITOR - return null; -#else - return AppleTangle.Data(); -#endif - } + public abstract byte[] GetAppleTangleData(); public void SetBLevel(int level) {