Update README with android apk building instructions

This commit is contained in:
Yemel Jardi 2014-06-04 18:15:58 -03:00
parent a1ee25a8c5
commit f62cbddcec
2 changed files with 25 additions and 23 deletions

View File

@ -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="<path to Crosswalk directory>"
```
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

View File

@ -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="<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
```