// --------------------------------------
    // PUBLIC METHODS
    // --------------------------------------



    public void AuthenticateUser()
    {
        if (_IsAuthed)
        {
            OnAuthSuccess();
        }
        else
        {
            AndroidNative.AuthificateUser();
        }
    }
Beispiel #2
0
    // --------------------------------------
    // PUBLIC METHODS
    // --------------------------------------



    public void AuthenticateUser()
    {
        OnTwitterLoginStarted();

        if (_IsAuthed)
        {
            OnAuthSuccess();
        }
        else
        {
            AndroidNative.AuthificateUser();
        }
    }