upgraded: androidx.room 2.5.1 -> 2.5.2; androidx.preference 1.2.0 -> 1.2.1
This commit is contained in:
parent
8b57289746
commit
c692126b1a
1 changed files with 8 additions and 7 deletions
15
build.gradle
15
build.gradle
|
|
@ -14,7 +14,7 @@ buildscript {
|
|||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'at.zierler.yamlvalidator'
|
||||
|
||||
configurations.all {
|
||||
configurations.configureEach {
|
||||
// fixes 'duplicate class error', when using these combine: androidx.core:1.10.1, androidx.preference:1.2.0 and androidx.room:2.5.1
|
||||
// see: https://stackoverflow.com/questions/75274720/a-failure-occurred-while-executing-appcheckdebugduplicateclasses/75315276#75315276
|
||||
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
|
||||
|
|
@ -26,9 +26,9 @@ configurations.all {
|
|||
|
||||
dependencies {
|
||||
implementation 'androidx.core:core:1.10.1'
|
||||
implementation 'androidx.preference:preference:1.2.0'
|
||||
implementation 'androidx.room:room-runtime:2.5.1'
|
||||
annotationProcessor 'androidx.room:room-compiler:2.5.1'
|
||||
implementation 'androidx.preference:preference:1.2.1'
|
||||
implementation 'androidx.room:room-runtime:2.5.2'
|
||||
annotationProcessor 'androidx.room:room-compiler:2.5.2'
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
@ -305,8 +305,9 @@ task validateLanguages {
|
|||
}
|
||||
|
||||
android {
|
||||
buildToolsVersion "33.0.0"
|
||||
compileSdkVersion 33
|
||||
defaultConfig {
|
||||
compileSdk 33
|
||||
}
|
||||
namespace "io.github.sspanak.tt9"
|
||||
|
||||
sourceSets {
|
||||
|
|
@ -358,7 +359,7 @@ android {
|
|||
}
|
||||
|
||||
|
||||
applicationVariants.all { variant ->
|
||||
applicationVariants.configureEach { variant ->
|
||||
tasks["merge${variant.name.capitalize()}Assets"]
|
||||
.dependsOn(validateYaml)
|
||||
.dependsOn(validateLanguages)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue