Upgraded android gradle plugin to 3.0.1
This commit is contained in:
parent
29c37b8ade
commit
77eb7304f0
@ -27,13 +27,13 @@ android {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
compile project(':library')
|
implementation project(':library')
|
||||||
compile project(':library-image-loader')
|
implementation project(':library-image-loader')
|
||||||
|
|
||||||
compile 'ru.noties:debug:3.0.0@jar'
|
implementation 'ru.noties:debug:3.0.0@jar'
|
||||||
|
|
||||||
compile OK_HTTP
|
implementation OK_HTTP
|
||||||
|
|
||||||
compile 'com.google.dagger:dagger:2.10'
|
implementation 'com.google.dagger:dagger:2.10'
|
||||||
annotationProcessor 'com.google.dagger:dagger-compiler:2.10'
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.10'
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ buildscript {
|
|||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.3.3'
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ task clean(type: Delete) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
task wrapper(type: Wrapper) {
|
task wrapper(type: Wrapper) {
|
||||||
gradleVersion '4.3'
|
gradleVersion '4.5'
|
||||||
distributionType 'all'
|
distributionType 'all'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -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-4.3-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-all.zip
|
||||||
|
@ -19,10 +19,10 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':library')
|
api project(':library')
|
||||||
compile ANDROID_SVG
|
api ANDROID_SVG
|
||||||
compile ANDROID_GIF
|
api ANDROID_GIF
|
||||||
compile OK_HTTP
|
api OK_HTTP
|
||||||
}
|
}
|
||||||
|
|
||||||
if (project.hasProperty('release')) {
|
if (project.hasProperty('release')) {
|
||||||
|
@ -14,8 +14,8 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':library')
|
api project(':library')
|
||||||
provided SUPPORT_APP_COMPAT
|
compileOnly SUPPORT_APP_COMPAT
|
||||||
}
|
}
|
||||||
|
|
||||||
if (project.hasProperty('release')) {
|
if (project.hasProperty('release')) {
|
||||||
|
@ -14,10 +14,10 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile SUPPORT_ANNOTATIONS
|
api SUPPORT_ANNOTATIONS
|
||||||
compile COMMON_MARK
|
api COMMON_MARK
|
||||||
compile COMMON_MARK_STRIKETHROUGHT
|
api COMMON_MARK_STRIKETHROUGHT
|
||||||
compile COMMON_MARK_TABLE
|
api COMMON_MARK_TABLE
|
||||||
}
|
}
|
||||||
|
|
||||||
if (project.hasProperty('release')) {
|
if (project.hasProperty('release')) {
|
||||||
|
@ -15,5 +15,5 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':library')
|
implementation project(':library')
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user