From f62cbddcec2fd356cd0be7e8b058ebb41e9791e3 Mon Sep 17 00:00:00 2001 From: Yemel Jardi Date: Wed, 4 Jun 2014 18:15:58 -0300 Subject: [PATCH] Update README with android apk building instructions --- README.md | 25 +++++++++++++++++++++++++ android/README.md | 23 ----------------------- 2 files changed, 25 insertions(+), 23 deletions(-) delete mode 100644 android/README.md diff --git a/README.md b/README.md index b2ebad6a3..3834db331 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,31 @@ $ sh webapp/build.sh - The ZIP file is *webapp/download/copay.zip* - The *webapp/copay-webapp* is the unzipped version +## 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 +``` +- 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 +``` + # About Copay diff --git a/android/README.md b/android/README.md deleted file mode 100644 index c726875f3..000000000 --- a/android/README.md +++ /dev/null @@ -1,23 +0,0 @@ -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="" -``` - -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 -``` -