yarn install or npm install
- Copy the
app/auth0-configuration.js.example
in this sample toapp/auth0-configuration.js
. - Open your Applications in the Auth0 dashboard.
- Select your existing Application from the list or click Create Application at the top to create a new Application of type Native.
- On the Settings tab for the Application, copy the "Client ID" and "Domain" values and paste them into the
app/auth0-configuration.js
file created above. - In the Allowed Callback URLs field, paste in the text below and replace
YOUR_DOMAIN
with the Domain from above. These URLs are required for the authentication result to be redirected from the browser to the app:
com.auth0samples://YOUR_DOMAIN/ios/com.auth0samples/callback,
com.auth0samples://YOUR_DOMAIN/android/com.auth0samples/callback
- Add the same values to the Allowed Logout URLs field as well. These are required for the browser to redirect back to the app after the user logs out.
- Scroll down and click Save Changes.
Run your app on an emulator, simulator, or your own connected device.
- To run the app on iOS run
yarn run ios
ornpm run ios
. - To run the app on Android run
yarn run android
ornpm run android
.