23 lines
502 B
C#
23 lines
502 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Firebase;
|
|
using Firebase.RemoteConfig;
|
|
using UnityEngine;
|
|
|
|
namespace WZ
|
|
{
|
|
public class FireBaseSDKManager : NormalSingleton<FireBaseSDKManager>
|
|
{
|
|
public void Init()
|
|
{
|
|
InitSDK();
|
|
}
|
|
|
|
private void InitSDK()
|
|
{
|
|
FireBaseRemoteConfigManager.Instance.FetchRemoteConfig();
|
|
FireBaseAnalyticsManager.Instance.InitSuperProperties();
|
|
}
|
|
}
|
|
} |