From 627323dfbbe300fbd88c4343b705c9a67e937172 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 8 Jul 2014 10:26:33 -0300 Subject: [PATCH] Update TODO.md --- TODO.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/TODO.md b/TODO.md index 46dd51d4f..bb62c9d4f 100644 --- a/TODO.md +++ b/TODO.md @@ -29,3 +29,30 @@ It was developed to be run on OSX. The outputs are copied to the dist directory DMG is created with hdiutil EXE is created with makensis (brew install makensis) + +## Android APK + +System Requirements + +* Download [Android SDK](http://developer.android.com/sdk/index.html) +* Download and install [Crosswalk](https://crosswalk-project.org/#documentation/getting_started) (Use Linux setup for OSX) + +Add to your ~/.bash_profile or ~/.bashrc + +``` +export CROSSWALK="" +``` + +To build the APK run the script: + +``` +sh android/build.sh [-d] +``` +- The -d flag will package the apk in debug mode, allowing [remote debugging chrome](https://developer.chrome.com/devtools/docs/remote-debugging) +- The APK file is in **android/Copay_VERSION_arm.apk** + +To install the APK in your device run: + +``` +adb install -r Copay_VERSION_arm.apk +```