Example #1
0
 public DeepLinkManager(LoginManager loginManager)
 {
     if (Instance == null)
     {
         Instance  = this;
         m_Manager = loginManager;
         Application.deepLinkActivated += OnDeepLinkingRequested;
         if (!string.IsNullOrEmpty(Application.absoluteURL))
         {
             Debug.Log($"Reflect started from deeplink: '{Application.absoluteURL}'");
             m_Manager.onDeepLink(Application.absoluteURL, true);
         }
     }
 }
Example #2
0
 public void Start()
 {
     m_DeepLinkManager = new DeepLinkManager(m_Manager);
     m_Manager.ReadPersistentToken();
 }