Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm designing an application for work. For security reasons, we want each employee to have to login to the app with a username and password. Additionally, we want to be able to revoke a specific employee's access if they quit/are fired. So essentially, I want to be able to give each employee a unique username and password for the app, and then be able to invalidate a specific user if necessary. Any suggestions on where to get started would be appreciated.
Firebase is the very good option in your case. Firebase Auth let users create a username with a password.
Refer this link:https://firebase.google.com/docs/auth/android/manage-users
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to make a chat app in which all features of chat like messaging, sharing video, image, and emoji, etc. I found a lot of tutorials for that but no one says how to chat with only those you know or have in contacts to prevent unwanted disturbance to the users from others. How to make such an app with flutter?
One way is by reading all the contacts number form the phone and then check if that phone number is registered
One feature/method I can think of is using referral/invite. The person can only join the app only if he is invited and the invitation is approved by the admin. This way you can have control over who accesses your app.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Suppose there is an application in which 3 users are registered. There is avtivity with three buttons. The user enters the application and can click on only one button (for each user own button), and on other buttons can not press. Tell me how to implement this. The application I make through Firebase.
You need to setup user authentication. You can read about that here:
https://firebase.google.com/docs/auth/android/start/
Basically, you need to create a user account and then take necessary actions depending on who the user is.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am developing one android app for banking transaction. I want to implement the finger print login feature but I don't want to use the device registered fingerprint. I want the user to register the fingerprint through my app . How can I implement,save and validate the data.Please answer.
On Android, applications do not have direct access to fingerprint data so you cannot register fingerprints within your app.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm developping an android app and I want to post some data from my app on facebook. I can post data from my own account but i can't from a different account how can i fix that? Can anyone help?
If your app is in development mode, then only people with admin/developer/tester roles can use your app. Either add them to those roles in your app settings, or set your app to public.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new to Android, I want to Login Gmail without entering user ID and password manually. i search lot but still i am unable to do it. please help me. i would be grateful.
Below steps are require to login to Google.
go to this link [Oauth 2.0]:How to send mail programmatically in android using OAuth2.0 token