I’m building a native Android app for a small group of users. As I only want intended users to authenticate and use, I’m opting for Username and Password login (Auth0 Database) with disabling Signing Up feature.
The Android app is supposed to talk to an API whose methods should be authenticated only.
I’m new to Auth0 ecosystem and it’s a bit overwhelming about how to start.
Things I’ve done till now:
- Created an API project
- Created an android native client
Questions:
- Should I follow Add Login to Your Android Application using the Auth0.Android SDK - Auth0 Docs and create a login activity on my Android app?
- How to connect the API project with android native client? The API section says ‘for native clients, you need Authorization Code Grant Flow with PKCE’. Is this not done with the link in 1)?