Update gradle plugin and androidxcore
We need core at 1.5.0-rc01 to be able to clearActions()
This commit is contained in:
parent
f1ce568b5e
commit
9cb2ed3356
|
@ -13,7 +13,7 @@ buildscript {
|
||||||
maven { url "https://plugins.gradle.org/m2/" }
|
maven { url "https://plugins.gradle.org/m2/" }
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath gradlePlugins.androidTools
|
classpath gradlePlugins.gradle
|
||||||
classpath gradlePlugins.kotlin
|
classpath gradlePlugins.kotlin
|
||||||
classpath gradlePlugins.ktlintGradle
|
classpath gradlePlugins.ktlintGradle
|
||||||
classpath gradlePlugins.detekt
|
classpath gradlePlugins.detekt
|
||||||
|
|
|
@ -5,7 +5,8 @@ ext.versions = [
|
||||||
gradle : '6.5',
|
gradle : '6.5',
|
||||||
|
|
||||||
navigation : "2.3.2",
|
navigation : "2.3.2",
|
||||||
androidTools : "4.0.0",
|
gradlePlugin : "4.1.2",
|
||||||
|
androidxcore : "1.5.0-rc01",
|
||||||
ktlint : "0.37.1",
|
ktlint : "0.37.1",
|
||||||
ktlintGradle : "9.2.1",
|
ktlintGradle : "9.2.1",
|
||||||
detekt : "1.0.0.RC6-4",
|
detekt : "1.0.0.RC6-4",
|
||||||
|
@ -44,7 +45,7 @@ ext.versions = [
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.gradlePlugins = [
|
ext.gradlePlugins = [
|
||||||
androidTools : "com.android.tools.build:gradle:$versions.androidTools",
|
gradle : "com.android.tools.build:gradle:$versions.gradlePlugin",
|
||||||
kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin",
|
kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin",
|
||||||
ktlintGradle : "org.jlleitschuh.gradle:ktlint-gradle:$versions.ktlintGradle",
|
ktlintGradle : "org.jlleitschuh.gradle:ktlint-gradle:$versions.ktlintGradle",
|
||||||
detekt : "gradle.plugin.io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$versions.detekt",
|
detekt : "gradle.plugin.io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$versions.detekt",
|
||||||
|
@ -52,6 +53,7 @@ ext.gradlePlugins = [
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.androidSupport = [
|
ext.androidSupport = [
|
||||||
|
core : "androidx.core:core-ktx:$versions.androidxcore",
|
||||||
support : "androidx.legacy:legacy-support-v4:$versions.androidLegacySupport",
|
support : "androidx.legacy:legacy-support-v4:$versions.androidLegacySupport",
|
||||||
design : "com.google.android.material:material:$versions.androidSupportDesign",
|
design : "com.google.android.material:material:$versions.androidSupportDesign",
|
||||||
annotations : "com.android.support:support-annotations:$versions.androidSupport",
|
annotations : "com.android.support:support-annotations:$versions.androidSupport",
|
||||||
|
|
|
@ -71,6 +71,7 @@ dependencies {
|
||||||
implementation project(':core:subsonic-api-image-loader')
|
implementation project(':core:subsonic-api-image-loader')
|
||||||
implementation project(':core:cache')
|
implementation project(':core:cache')
|
||||||
|
|
||||||
|
implementation androidSupport.core
|
||||||
implementation androidSupport.support
|
implementation androidSupport.support
|
||||||
implementation androidSupport.design
|
implementation androidSupport.design
|
||||||
implementation androidSupport.multidex
|
implementation androidSupport.multidex
|
||||||
|
|
Loading…
Reference in New Issue