diff options
| author | Gubolin <gubolin@fantasymail.de> | 2015-01-11 10:32:15 +0100 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2015-01-11 10:32:15 +0100 |
| commit | ff3abf9d87a502cdf31a5f4abcbbf1826fd64fc9 (patch) | |
| tree | 43e0a2734bc16d5906decf05662d30436cb42313 /mobile.sh | |
| parent | 09d04ecd59279513015274a1386d345e3f8a1640 (diff) | |
| parent | 3c03814833a272b305cbac5ad7f70190ec2a8926 (diff) | |
| download | snap-ff3abf9d87a502cdf31a5f4abcbbf1826fd64fc9.tar.gz snap-ff3abf9d87a502cdf31a5f4abcbbf1826fd64fc9.zip | |
merge mobileapp
Diffstat (limited to 'mobile.sh')
| -rwxr-xr-x | mobile.sh | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/mobile.sh b/mobile.sh new file mode 100755 index 0000000..6ec8a0e --- /dev/null +++ b/mobile.sh @@ -0,0 +1,65 @@ +#!/bin/bash + +if [[ "$snapsource" == "" ]] +then + export snapsource="https://github.com/Gubolin/snap.git" +fi + +if [[ $1 = "" ]] +then + echo "Usage: mobile.sh PLATFORM [BUILDSOURCE]" + exit 0 +fi + +scriptdir=$(readlink -e ".") + +# Requirements: +# git, nodejs, android SDK / other platform(s) +# cordova (https://cordova.apache.org/) + +if [[ $2 != "" ]] +then + buildsource=$(readlink -e "$2") +fi + +builddir=$(mktemp -d) + +cordova create $builddir edu.berkeley.snap "Snap\!" +cd $builddir +rm -rf www config.xml + +if [[ $2 == "" ]] +then + git clone "$snapsource" www + cd www/ + git checkout mobileapp +else + mv "$buildsource" www + cd www +fi + +# add mobile-specific library; it's made available at runtime +sed -i '/link rel="shortcut icon"/a\ + <script type="text/javascript" src="cordova.js"></script>' snap.html + +# add everything needed and build for $device +cordova platform add "$1" +cordova plugin add org.apache.cordova.plugin.softkeyboard +cordova plugin add org.apache.cordova.vibration +cordova plugin add org.apache.cordova.device-motion +cordova plugin add org.apache.cordova.device-orientation +cordova plugin add org.apache.cordova.geolocation +cordova plugin add de.appplant.cordova.plugin.local-notification + +if [[ $1 == "android" ]] +then + # Remove default icons + cd "$builddir/platforms/android" + find -name '*.png' | xargs rm +fi + +cordova build "$1" + +cd $builddir +# TODO other platforms +find -name '*.apk' | xargs -I {} mv {} $scriptdir |
