Good day...I working with two applications, and both applications a user have to be logged in.The first application after logging in,there is a button on click of the button,it forwards the user to the second application login.
(美好的一天...我正在使用两个应用程序,并且两个应用程序都必须先登录。第一个应用程序登录后,单击该按钮后会有一个按钮,它将用户转发到第二个应用程序登录。)
So now the user is logged in two different applications. (因此,现在用户已登录两个不同的应用程序。)
So how can i logout both application on click of a logout button. (因此,如何在单击注销按钮时注销两个应用程序。)
I am able to logout for one application only. (我只能注销一个应用程序。)
This is my Code to logout for an application
(这是我注销应用程序的代码)
private void logOut() {
mAuth.signOut();
sendToLogin();
}
ask by Liam translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…