From 221f722ed91ccd0f74d8faa989c5c391a8767684 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Thu, 18 Mar 2021 12:27:05 +0900 Subject: [PATCH] gradle minor change --- android/app/build.gradle | 2 +- android/build.gradle | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 916c59f0b..f33882cb3 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -104,7 +104,7 @@ repositories { dependencies { implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9' - implementation 'androidx.core:core-ktx:1.5.0-beta02' // v1.5.0-alpha02+ for ShortcutManagerCompat.setDynamicShortcuts + implementation 'androidx.core:core-ktx:1.5.0-beta03' // v1.5.0-alpha02+ for ShortcutManagerCompat.setDynamicShortcuts implementation 'androidx.exifinterface:exifinterface:1.3.2' implementation 'com.commonsware.cwac:document:0.4.1' implementation 'com.drewnoakes:metadata-extractor:2.15.0' diff --git a/android/build.gradle b/android/build.gradle index b2f44fe0b..657711f4d 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,7 +5,11 @@ buildscript { google() mavenCentral() // TODO TLAD remove jcenter (migrating to mavenCentral) when this is fixed: https://youtrack.jetbrains.com/issue/IDEA-261387 - jcenter() + jcenter { + content { + includeModule("org.jetbrains.trove4j", "trove4j") + } + } } dependencies { classpath 'com.android.tools.build:gradle:4.1.2' @@ -20,7 +24,11 @@ allprojects { google() mavenCentral() // TODO TLAD remove jcenter (migrating to mavenCentral) when this is fixed: https://youtrack.jetbrains.com/issue/IDEA-261387 - jcenter() + jcenter { + content { + includeModule("org.jetbrains.trove4j", "trove4j") + } + } } // gradle.projectsEvaluated { // tasks.withType(JavaCompile) {