- After cloning run 'npm install' to make sure the directory/folder is initialized for react native.
- Run 'npm start' to run the project
Please follow these steps:
- Create a Personal Access Token (PAT) on https://www.github.com.
Please follow this guide to create a PAT and make sure to select theread:packagesscope. - Add the following to the project level
settings.gradle:allProjects { repositories { ... maven { url = uri('https://maven.pkg.github.com/mitek-systems/misnap-android') credentials { username = 'your-github-username' password = 'personal-access-token' // created in Step 1. } } } }