- Run
npm installin the root directory. - Change into the UI Framework directory of choice. (e.g.
cd vue3) - Run
npm install. - Build the web app:
npm run build. - Change back into the root folder (
cd ..) - Copy the built web app into the native platform:
npx cap copy. - Update the native plugins and dependencies referenced in package.json:
npx cap update.* - Make sure you've added your API-keys. Replace the occurrences of
your_api_keywith your API-key.- Android: In
AndroidManifest.xmllook foryour_api_key. - iOS: in the
srcfolder (within the UI Framework directory of choice) search foryour_api_key. - For info about obtaining API-keys, check out the documentation
- Android: In
- Open the native IDE and run the app:
npx cap open androidornpx cap open ios.
* This step is only needed after running npm install. So probably only the first time you clone this repository.