intval3/app
mmcwilliams 6f6dabca5b Created a PWA frontend. This marks a major milestone in the project, as I will be dropping support of the cordova mobile app and rely entirely on the PWA for bluetooth connectivity going forward. Can't afford an Apple dev license I'll never use and don't want the trouble of maintaining mobile apps on the stores that maybe a handful of people will use. Check intval.sixteenmillimeter.com for this site deployed as an app. 2019-06-19 19:23:20 -04:00
..
hooks Snafuu with the icons script, fixed the path names to deploy new icons on command 2017-12-29 23:21:00 -05:00
res Use an anyany screen for all ios devices 2017-12-29 23:59:27 -05:00
www Created a PWA frontend. This marks a major milestone in the project, as I will be dropping support of the cordova mobile app and rely entirely on the PWA for bluetooth connectivity going forward. Can't afford an Apple dev license I'll never use and don't want the trouble of maintaining mobile apps on the stores that maybe a handful of people will use. Check intval.sixteenmillimeter.com for this site deployed as an app. 2019-06-19 19:23:20 -04:00
.gitignore Fix build and add splash screen. 2017-12-29 21:43:54 -05:00
Readme.md Create both readme files, one at the project level and another just for the mobile app. More work needed on the project one. 2018-02-07 18:22:28 -05:00
config.xml Increment patch number 2018-12-23 13:28:50 -05:00
install.sh Use INTVAL3 not INTVAL in usage descriptions. Working on submitting this to both app stores. 2018-02-07 18:23:07 -05:00
package-lock.json Update cordova and add appcenter data 2018-12-23 13:24:53 -05:00
package.json Update modules 2019-02-23 16:42:48 -05:00

Readme.md

INTVAL3

Mobile App

The INTVAL3 mobile app is built using the Cordova framework for cross-platform deployment to iOS and Android.

Requirements

  • node.js
  • npm
  • Cordova
  • XCode (for iOS) and/or
  • Android Studio (for Android)

Installation

All of the required plugins can be installed directly by executing the install.sh script on a system which supports bash. This script will use the cordova application to install the Cordova plugins. Cordova also supports the npm package.json format, so plugins may be alternately installed simply by running a npm install command from within the app directory.

Building

Once all dependencies and plugins are installed, you can build the INTVAL3 app by running

cordova build ios

or

cordova build android

This generates the application source code in the platforms directory, under either the ios or android directory depending on your build target. The app can be built and run on your device by going to the project file and opening it in your IDE, either XCode or Android Studio. Alternately it can be run on your device using the cordova run ios or cordova run android commands.