Use Android build tools 24.0.1, don't require HTTPS

This commit is contained in:
Joshua Granick
2016-08-08 14:42:30 -07:00
parent b37bb94460
commit 0aac32f551
5 changed files with 17 additions and 7 deletions

View File

@@ -2,7 +2,9 @@
buildscript {
repositories {
jcenter()
jcenter {
url "http://jcenter.bintray.com/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
@@ -14,7 +16,9 @@ buildscript {
allprojects {
repositories {
jcenter()
jcenter {
url "http://jcenter.bintray.com/"
}
}
}
@@ -29,7 +33,9 @@ task wrapper(type: Wrapper) {
configure(subprojects.findAll {!it.file('build.gradle').exists() && it.file('build.xml').exists()}) {
buildscript {
repositories {
mavenCentral()
maven {
url "http://repo1.maven.org/maven2/"
}
}
dependencies {

View File

@@ -19,7 +19,7 @@ VERSION_CODE=::META_BUILD_NUMBER::
ANDROID_BUILD_TARGET_SDK_VERSION=::ANDROID_TARGET_SDK_VERSION::
ANDROID_BUILD_MIN_SDK_VERSION=::ANDROID_MINIMUM_SDK_VERSION::
ANDROID_BUILD_SDK_VERSION=::ANDROID_TARGET_SDK_VERSION::
ANDROID_BUILD_TOOLS_VERSION=23.0.3
ANDROID_BUILD_TOOLS_VERSION=24.0.1
::if KEY_STORE::
KEY_STORE=::KEY_STORE::

View File

@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-::ANDROID_GRADLE_VERSION::-bin.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-::ANDROID_GRADLE_VERSION::-bin.zip

View File

@@ -1,6 +1,8 @@
buildscript {
repositories {
mavenCentral()
maven {
url "http://repo1.maven.org/maven2/"
}
}
dependencies {