iOS app to calculate EASI scores
# I've only tested this on Mac OS X, but it should work on GNU/Linux as well. Just replace 'brew' with 'apt-get', 'yum', etc...
# In theory, you could make it build on Windows but you should probably just upgrade to a better OS.
# set environment variables
export ANDROID_HOME=/path/to/android/sdk
# install npm, imagemagick
brew install npm
brew install imagemagick
# install cordova, cordova-splash, cordova-icon
sudo npm install cordova -g
sudo npm install cordova-splash -g
sudo npm install cordova-icon -g
# use the rounded icon for android
cp icon-round.png icon.png
# build for an android device
cordova platform add android
cordova build android --release
# install npm, imagemagick
brew install npm
brew install imagemagick
# install cordova, cordova-splash, cordova-icon
sudo npm install cordova -g
sudo npm install cordova-splash -g
sudo npm install cordova-icon -g
# use the square icon for iOS
cp icon-square.png icon.png
# build for iOS simulator
cordova platform add ios
cordova build ios
# run inside simulator (optional)
cordova emulate
- Open
platforms/ios/EASI Calc.xcodeproj
and use Xcode to build