diff --git a/Assets/Scripts/Common/SDK/BFThirdReportSDKManager.cs b/Assets/Scripts/Common/SDK/BFThirdReportSDKManager.cs index 8303d72ee..93f9ce765 100644 --- a/Assets/Scripts/Common/SDK/BFThirdReportSDKManager.cs +++ b/Assets/Scripts/Common/SDK/BFThirdReportSDKManager.cs @@ -9,9 +9,9 @@ namespace BF { public class BFThirdReportSDKManager : MonoBehaviour { - private ThinkingAnalyticsSdk TASdk = new ThinkingAnalyticsSdk(); - private AppsFlyerSdk AFSdk = new AppsFlyerSdk(); - private bool isInitAFAdRevenue = false; + // private ThinkingAnalyticsSdk TASdk = new ThinkingAnalyticsSdk(); + // private AppsFlyerSdk AFSdk = new AppsFlyerSdk(); + // private bool isInitAFAdRevenue = false; void Start() { diff --git a/Assets/Scripts/Common/SDK/SDKManager.cs b/Assets/Scripts/Common/SDK/SDKManager.cs index 42ce08d4b..31585a09b 100644 --- a/Assets/Scripts/Common/SDK/SDKManager.cs +++ b/Assets/Scripts/Common/SDK/SDKManager.cs @@ -59,12 +59,12 @@ namespace BF { //新版本登陆,支付,第三方辅助SDK public BFLoginSDKManager BFLoginSDKMgr { get; private set; } - public BFPaySDKManager BFPaySDKMgr { get; private set; } + // public BFPaySDKManager BFPaySDKMgr { get; private set; } public IAPManager IosPaySDKMgr { get; private set; } // public BFAdmobSDKManager BFAdmobSDKMgr { get; private set; } - public BFIronSourceSDKManager BFIronSourceSDKMgr { get; private set; } + // public BFIronSourceSDKManager BFIronSourceSDKMgr { get; private set; } public BFNativeSDKManager BFNativeSDKMgr { get; private set; } - public BFThirdReportSDKManager BFThirdReportSDKMgr { get; private set; } + // public BFThirdReportSDKManager BFThirdReportSDKMgr { get; private set; } static SDKManager instance; public static SDKManager Create() @@ -88,15 +88,15 @@ namespace BF // 登陆 BFLoginSDKMgr = sdkGo.AddComponent(); // 支付 - BFPaySDKMgr = sdkGo.AddComponent(); + // BFPaySDKMgr = sdkGo.AddComponent(); // 广告 // BFAdmobSDKMgr = sdkGo.AddComponent(); - BFIronSourceSDKMgr = sdkGo.AddComponent(); - // 三方上报 - BFThirdReportSDKMgr = sdkGo.AddComponent(); + // BFIronSourceSDKMgr = sdkGo.AddComponent(); + // // 三方上报 + // BFThirdReportSDKMgr = sdkGo.AddComponent(); // native交互管理 BFNativeSDKMgr = sdkGo.AddComponent(); - IosPaySDKMgr = IAPManager.Instance; + // IosPaySDKMgr = IAPManager.Instance; GameObject.DontDestroyOnLoad(sdkGo); }