Use Android build tools 24.0.1, don't require HTTPS
This commit is contained in:
4
dependencies/extension-api/build.gradle
vendored
4
dependencies/extension-api/build.gradle
vendored
@@ -1,6 +1,8 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url "http://repo1.maven.org/maven2/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
jcenter {
|
||||||
|
url "http://jcenter.bintray.com/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.1.0'
|
classpath 'com.android.tools.build:gradle:2.1.0'
|
||||||
@@ -14,7 +16,9 @@ buildscript {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
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()}) {
|
configure(subprojects.findAll {!it.file('build.gradle').exists() && it.file('build.xml').exists()}) {
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url "http://repo1.maven.org/maven2/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ VERSION_CODE=::META_BUILD_NUMBER::
|
|||||||
ANDROID_BUILD_TARGET_SDK_VERSION=::ANDROID_TARGET_SDK_VERSION::
|
ANDROID_BUILD_TARGET_SDK_VERSION=::ANDROID_TARGET_SDK_VERSION::
|
||||||
ANDROID_BUILD_MIN_SDK_VERSION=::ANDROID_MINIMUM_SDK_VERSION::
|
ANDROID_BUILD_MIN_SDK_VERSION=::ANDROID_MINIMUM_SDK_VERSION::
|
||||||
ANDROID_BUILD_SDK_VERSION=::ANDROID_TARGET_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::
|
::if KEY_STORE::
|
||||||
KEY_STORE=::KEY_STORE::
|
KEY_STORE=::KEY_STORE::
|
||||||
|
|||||||
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
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
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url "http://repo1.maven.org/maven2/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
Reference in New Issue
Block a user