From de21a7176e90c4e9a41cf93b5e071f16e6419783 Mon Sep 17 00:00:00 2001 From: Andrew Englehorn Date: Thu, 20 Jan 2022 16:40:14 -0800 Subject: [PATCH] Add comments to dependencies --- app/build.gradle | 6 ++++++ build.gradle | 2 ++ 2 files changed, 8 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 0ca020ff..41869f96 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -91,6 +91,8 @@ dependencies { implementation 'androidx.activity:activity-ktx:1.4.0' implementation 'androidx.fragment:fragment-ktx:1.4.0' implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.0' + + // Updating to 2.4.0 causes error. Duplicate classes found in modules. implementation 'androidx.lifecycle:lifecycle-viewmodel-savedstate:2.2.0' implementation 'com.google.android.gms:play-services-ads:20.5.0' @@ -116,6 +118,8 @@ dependencies { implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation "androidx.room:room-runtime:2.4.0" + + // Updating to 2.4.1 causes app:kaptDebugKotlin error. kapt "androidx.room:room-compiler:2.3.0" annotationProcessor 'androidx.room:room-compiler:2.4.0' @@ -153,6 +157,8 @@ dependencies { kapt "com.google.dagger:dagger-compiler:$daggerVersion" kapt "com.google.dagger:dagger-android-processor:$daggerVersion" + + // Updating to 2.28.3 causes app:kaptDebugKotlin error. implementation "com.google.dagger:dagger:$daggerVersion" implementation "com.google.dagger:dagger-android-support:$daggerVersion" diff --git a/build.gradle b/build.gradle index e648e557..103e7d29 100644 --- a/build.gradle +++ b/build.gradle @@ -12,6 +12,8 @@ buildscript { classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5" classpath 'com.google.gms:google-services:4.3.10' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1' + + // Updating to 2.0.0 causes error. Manifest merger failed. classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:1.2.0" }