Aplikacija za terensko delo popisa jam
This repo includes cordova-background-geolocation-katasterjam as a git submodule at src-cordova/local-plugins/cordova-background-geolocation-katasterjam. Clone with submodules:
git clone --recurse-submodules https://github.com/DZRJL/katasterjam-mobile.gitFor an existing clone after pulling a change that updates the submodule:
git submodule update --init --recursiveWindows: enable long paths first. The submodule contains source paths over 260 characters; without long-path support git submodule add/update fails with Filename too long. Run once per machine:
git config --global core.longpaths trueFollow instructions here (chapter #1): https://quasar.dev/quasar-cli-vite/developing-cordova-apps/preparation
(install Android Studio, set up PATH, etc... you can skip chapters #2, #3 and #4 - they are already done)
npm install -g cordovanpm install
# install cordova dependencies
cd src-cordova
cordova platform add android@11
npm install
# check if everything is set up correctly
cordova requirementsnpm run dev
# or run cordova in dev mode
npm run mobile# build full android package
npm run build-mobile
# only update www files (faster)
npm run mobile-update