Update gradle plugin and androidxcore

We need core at 1.5.0-rc01 to be able to clearActions()
This commit is contained in:
tzugen 2021-04-17 14:32:04 +02:00
parent f1ce568b5e
commit 9cb2ed3356
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
3 changed files with 6 additions and 3 deletions

View File

@ -13,7 +13,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath gradlePlugins.androidTools
classpath gradlePlugins.gradle
classpath gradlePlugins.kotlin
classpath gradlePlugins.ktlintGradle
classpath gradlePlugins.detekt

View File

@ -5,7 +5,8 @@ ext.versions = [
gradle : '6.5',
navigation : "2.3.2",
androidTools : "4.0.0",
gradlePlugin : "4.1.2",
androidxcore : "1.5.0-rc01",
ktlint : "0.37.1",
ktlintGradle : "9.2.1",
detekt : "1.0.0.RC6-4",
@ -44,7 +45,7 @@ ext.versions = [
]
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",
ktlintGradle : "org.jlleitschuh.gradle:ktlint-gradle:$versions.ktlintGradle",
detekt : "gradle.plugin.io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$versions.detekt",
@ -52,6 +53,7 @@ ext.gradlePlugins = [
]
ext.androidSupport = [
core : "androidx.core:core-ktx:$versions.androidxcore",
support : "androidx.legacy:legacy-support-v4:$versions.androidLegacySupport",
design : "com.google.android.material:material:$versions.androidSupportDesign",
annotations : "com.android.support:support-annotations:$versions.androidSupport",

View File

@ -71,6 +71,7 @@ dependencies {
implementation project(':core:subsonic-api-image-loader')
implementation project(':core:cache')
implementation androidSupport.core
implementation androidSupport.support
implementation androidSupport.design
implementation androidSupport.multidex