The participants' app of Mobistudy. The app is developed as an Apache Cordova app using the quasar framework as UI frontend.
You need to install the following on your system:
- python (because nodejs requires python)
- nodejs
- Apache Cordova
- (optional) the quasar command line tool
- XCode
- Android SDK and build tools
Install all other dependencies with:
npm install
Before running the app on a phone, create an empty 'www' directory under the src-cordova directory:
cd src-cordova
mkdir www
npm install
Create a file named project.config.js
, use project.config.template.js
for an example and guidance.
You need to have Java, gradle, a recent version of Android SDK and the build tools installed on your computer. The easiest thing to do is to install Android Studio and use the SDK manager to download the SDK and build tools.
The actual versions to download should match the ones specified inside src-cordova/platforms/android/build.gradle (look for defaultBuildToolsVersion and defaultTargetSdkVersion).
If that file hasn't been created yet, run:
cd src-cordova
cordova prepare android
Prepare the Xcode project:
cd src-cordova
cordova prepare ios
(if you get an error like "Conflict found, edit-config changes from config.xml
will overwrite plugin.xml changes", repeat cordova prepare ios
)
This will create a folder under src-cordova/platforms/ios Open that folder with Xcode. It will contain an iOS project. Add the HealthKit capability.
You need to make sure there is a valid signing profile for the app, at least for development. Try compiling the project and see if it works.
Open the Mobistudy App-info.plist file located under Resources. Open it as source file. Then check that the following flags are set:
For US export compliance:
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
For accessing HealthKit:
<key>NSHealthShareUsageDescription</key>
<string>The app needs to read health-related data from your phone</string>
<key>NSHealthUpdateUsageDescription</key>
<string>The app needs to store health-related data from your phone</string>
In order to be able to retrieve files that are stored in the app through iTunes, make sure the following also is present (needed for testing only):
<key>UIFileSharingEnabled</key>
<true/>
For the pedometer to work properly:
<key>NSMotionUsageDescription</key>
<string>The app needs to detect steps</string>
For the GPS:
<key>NSLocationWhenInUseUsageDescription</key>
<string>The app needs your position to estimate activity or the environment</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>The app needs your position to estimate activity or the environment</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>The app needs your position to estimate activity or the environment</string>
The peak flow meter requires a plugin that can only be installed manually. See https://github.com/kevinchtsang/cordova-plugin-spf for instructions.
The code is consistent with how projects are structured in Quasar. If you use VS Code, follow the recommended settings from Quasar.
For development, you may want to mock some modules, see project.conf.js to activate mocked modules.
Before you run quasar dev
create the project.config.js file using the available template
To start the app in development mode (hot-code reloading, error reporting, etc.), run:
quasar dev
or from npm (it's the same):
npm run dev
If you want to run it on a phone (supposing it's an iPhone):
quasar dev -m ios
Use android
instead of ios
for android.
Additional setup may be required if you use cordova plugins instead of mocks. Check the deploy section for details.
The repository contains some unit tests, to run them:
npm run test
If you want to have quasar and the tests running in parallel and watching for code changes:
npm run dev:test
Setup project.config.js
to use cordova plugins and the official API endpoint.
Generate the compiled code.
quasar build -m ios --ide
Open Xcode to compile the project and sign the app with a provisioning profile prepared for distribution on the App Store.
Generate the compiled code.
quasar build -m android
To sign the APK for the Play store: create a keystore (only once! not for every release).
keytool -genkey -v -keystore mobistudy-release.keystore -alias upload -keyalg RSA -keysize 2048 -validity 10000
Write down the password you set for the keystore and the certificate. Let's say it's "pwdpwd"
Then, inside src-cordova do:
cordova prepare android
cordova build android --release -- --keystore=mobistudy-release.keystore --alias=upload --storePassword=pwdpwd --password=pwdpwd
the APK will be available in src-cordova/platforms/android/app/build/outputs/apk/release/app-release.apk
Original idea: Dario Salvi and Carmelo Velardo.
Coordination: Dario Salvi and Carl Magnus Olsson.
Development:
- Dario Salvi
- Arvind Goburdhun
- Jameson Lee
- Lennart Czienskowski
- Elin Forsnor
- Felix Morau
- Milo Bengtsson
- Jacky Tu
- Elliott Hellstrand
- Andreas Holm
- Moustafa Allouhaibi
- John Håkansson
- Daniel Abella
- Kevin Tsang
- Gent Ymeri
- Shreyas Rana
Graphic design and illustations:
See license file