From 7141725b4918be5f55684ddaa1c2d56bfd6abcfd Mon Sep 17 00:00:00 2001 From: Yemel Jardi Date: Thu, 17 Jul 2014 16:59:04 -0300 Subject: [PATCH] Update README.md and reference to Crosswalk 8 --- README.md | 26 ++++++++++++++++++++++++++ TODO.md | 27 --------------------------- 2 files changed, 26 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 598627475..9d7d1e3bd 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,32 @@ One solution is to use Copay with a Python version manager for 2.6. # Development +## Android APK + +System Requirements + +* Download [Android SDK](http://developer.android.com/sdk/index.html) +* Download and install [Crosswalk 8](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 +``` ## Google Chrome Extension diff --git a/TODO.md b/TODO.md index 209b292e1..bc9a34c43 100644 --- a/TODO.md +++ b/TODO.md @@ -30,33 +30,6 @@ 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 -``` - # Development