I would like to create a function that retrieves a user’s username and password and logs in.
I tried in this way
AuthDetails authDetails = AuthDetails.of(u.getUsername(),u.getPassword());
loginScreenSupport.authenticate(authDetails,this);
but the password is incorrect because it is encrypted.
what can I do ?