ripple-unmaintained / ripple-lib-java

Java version of ripple-lib (work in progress)
ISC License
126 stars 109 forks source link

Fix ripple-android on travis #49

Closed sublimator closed 10 years ago

sublimator commented 10 years ago

There's an issue with the android-maven-plugin version not being specified in the build.xml

            <groupId>com.jayway.maven.plugins.android.generation2</groupId>
            <artifactId>android-maven-plugin</artifactId>
sublimator commented 10 years ago

This is an issue with not all build tools being installed. The dx command is missing.

The problem is with this line (in the .travis.yml file)

    - android update sdk --force -u -t 1,3,4,android-10,extra-android-support,extra-android-m2repository < accept.txt

1,3,4 must be replaced with some kind of constant symbolics (I couldn't find them last time I tweaked this)

We want the latest sdk, platform tools and build tools all installed

sublimator commented 10 years ago

Fixed by b8c36ee