In mobile native app, if I set the security to production, will the login page be auto generated like the login page in web?

0
In mobile native app, if I set the security to production, will the login page be auto generated like the login page in web? If mobile login page is not auto generated, and I created login page by myself, should I set the login page as the native mobile’s home page?
asked
1 answers
1

Since users won’t be authenticated when they open the app for the first time, they are assigned the anonymous user role. You should set the sign-in page as the homepage for this role only.

After sign-in a user will be authenticated and receive a different user role. They will be taken to either the default home page (so make sure the sign-in page is not your default) or a role-specific homepage of your choosing. In the navigation menu you can set a homepage per userrole.

answered