From 7580715dc23bf9b8d0134d1eae5a00a68a3d5cb1 Mon Sep 17 00:00:00 2001 From: Yemel Jardi Date: Thu, 22 May 2014 15:43:23 -0700 Subject: [PATCH] Add readme for building an Android APK --- android/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 android/README.md diff --git a/android/README.md b/android/README.md new file mode 100644 index 000000000..c726875f3 --- /dev/null +++ b/android/README.md @@ -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="" +``` + +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 +``` +