Update build-tools to 20.0.0

This commit is contained in:
Daniel Martí 2014-06-30 17:03:16 +02:00
parent fdb53b75f4
commit cbdcdd1e78
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
sdk_path = "/home/vagrant/android-sdk"
ndk_path = "/home/vagrant/android-ndk"
build_tools = "19.1.0"
build_tools = "20.0.0"
ant = "ant"
mvn3 = "mvn"
gradle = "gradle"

View File

@ -32,7 +32,7 @@ end
script "add_build_tools" do
interpreter "bash"
user user
ver = "19.1.0"
ver = "20.0.0"
cwd "/tmp"
code "
if [ -f /vagrant/cache/build-tools/#{ver}.tar.gz ] ; then

View File

@ -9,7 +9,7 @@
# Override the path to the Android NDK, $ANDROID_NDK by default
# ndk_path = "/path/to/android-ndk"
# Build tools version to be used
build_tools = "19.0.2"
build_tools = "20.0.0"
# Command for running Ant
# ant = "/path/to/ant"

View File

@ -42,7 +42,7 @@ def get_default_config():
return {
'sdk_path': os.getenv("ANDROID_HOME"),
'ndk_path': os.getenv("ANDROID_NDK"),
'build_tools': "19.1.0",
'build_tools': "20.0.0",
'ant': "ant",
'mvn3': "mvn",
'gradle': 'gradle',

View File

@ -25,8 +25,8 @@ copy_apks_into_repo() {
create_fake_android_home() {
mkdir $1/build-tools
mkdir $1/build-tools/19.1.0
touch $1/build-tools/19.1.0/aapt
mkdir $1/build-tools/20.0.0
touch $1/build-tools/20.0.0/aapt
}
create_test_dir() {