Merge pull request #457 from yemel/feature/android-version

Feature/android version
This commit is contained in:
Mario Colque 2014-05-23 18:03:32 +03:00
commit 79a35c7ac9
5 changed files with 95 additions and 0 deletions

3
.gitignore vendored
View File

@ -45,3 +45,6 @@ webapp
chrome-extension
firefox-addon
version.js
android/package
android/*.apk

23
android/README.md Normal file
View File

@ -0,0 +1,23 @@
System Requirements
* Download [Android SDK](http://developer.android.com/sdk/index.html)
* Download [Crosswalk](https://crosswalk-project.org/#documentation/getting_started/linux_host_setup) and setup the environment
Add to your ~/.bash_profile or ~/.bashrc
```
export CROSSWALK="<path to Crosswalk directory>"
```
To build the APK run the script:
```
sh android/build.sh
```
To install the APK in your device run:
```
adb install -r Copay_VERSION_arm.apk
```

57
android/build.sh Normal file
View File

@ -0,0 +1,57 @@
#! /bin/bash
# Description: This script compiles and copy the needed files to later package the application for Android
OpenColor="\033["
Red="1;31m"
Yellow="1;33m"
Green="1;32m"
CloseColor="\033[0m"
# Check function OK
checkOK() {
if [ $? != 0 ]; then
echo "${OpenColor}${Red}* ERROR. Exiting...${CloseColor}"
exit 1
fi
}
# Configs
BUILDDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APPDIR="$BUILDDIR/package"
echo $BUILDDIR
echo $APPDIR
# Move to the build directory
cd $BUILDDIR
[ -z "$CROSSWALK" ] && { echo "${OpenColor}${Red}* Need to set CROSSWALK environment variable${CloseColor}"; exit 1; }
# Create/Clean temp dir
echo "${OpenColor}${Green}* Checking temp dir...${CloseColor}"
if [ -d $APPDIR ]; then
rm -rf $APPDIR
fi
mkdir -p $APPDIR
# Re-compile copayBundle.js
echo "${OpenColor}${Green}* Generating copay bundle...${CloseColor}"
grunt --target=dev shell
checkOK
# Copy all app files
echo "${OpenColor}${Green}* Copying all app files...${CloseColor}"
cd $BUILDDIR/..
cp -af {css,font,img,js,lib,sound,config.js,version.js,index.html,./android/icon.png,./android/manifest.json} $APPDIR
checkOK
# Building the APK
echo "${OpenColor}${Green}* Building APK file...${CloseColor}"
cd $CROSSWALK
python make_apk.py --manifest=$APPDIR/manifest.json --target-dir=$BUILDDIR --arch=arm
checkOK
cd $BUILDDIR
echo "${OpenColor}${Yellow}\nAwesome! We have a brand new APK, enjoy it!${CloseColor}"

BIN
android/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

12
android/manifest.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Copay",
"version": "0.0.0.1",
"app": {
"launch":{
"local_path": "index.html"
}
},
"icons": {
"128": "icon.png"
}
}