diff --git a/project.properties b/project.properties index bd48a11..39db97f 100644 --- a/project.properties +++ b/project.properties @@ -11,5 +11,5 @@ proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-19 +target=android-20 android.library.reference.1=external/netcipher/libnetcipher diff --git a/setup-ant.bat b/setup-ant.bat index 1f5cc06..84311d1 100644 --- a/setup-ant.bat +++ b/setup-ant.bat @@ -1,7 +1,7 @@ @ECHO OFF SETLOCAL enabledelayedexpansion -SET "target=android-19" +SET "target=android-20" REM Update ant setup in project and all sub-projects SET "pattern=project.properties" diff --git a/setup-ant.sh b/setup-ant.sh index 528e07c..a8011a8 100755 --- a/setup-ant.sh +++ b/setup-ant.sh @@ -1,6 +1,11 @@ #!/bin/sh -target="android-19" +target="android-20" + +# Travis doesn't support android-20 yet +if [ -n "$TRAVIS" ]; then + target="android-19"; +fi # Update ant setup in project and all sub-projects for f in `find external/ -name project.properties`; do