Update README.md and reference to Crosswalk 8

This commit is contained in:
Yemel Jardi 2014-07-17 16:59:04 -03:00
parent aa4af0a0e9
commit 7141725b49
2 changed files with 26 additions and 27 deletions

View File

@ -106,6 +106,32 @@ One solution is to use Copay with a Python version manager for 2.6.
# Development # 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="<path to Crosswalk directory>"
```
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 ## Google Chrome Extension

27
TODO.md
View File

@ -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 DMG is created with hdiutil
EXE is created with makensis (brew install makensis) 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="<path to Crosswalk directory>"
```
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 # Development