From e9fd97c41eb163389e787477f524356f1fab7562 Mon Sep 17 00:00:00 2001 From: Michael Bestas Date: Fri, 10 Jul 2020 03:33:24 +0300 Subject: [PATCH] Upgrade androidx-lifecycle-livedata to 2.3.0-alpha05 * All previous aar versions have their modified date set to 0 which trigger the following openjdk bug: https://bugs.openjdk.java.net/browse/JDK-8184940 This fixes the following compilation error while building in AOSP environment: java.time.DateTimeException: Invalid value for MonthOfYear (valid values 1 - 12): 0 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index b46dd453..5615aa27 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -122,7 +122,7 @@ dependencies { implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0' - implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0-rc03' + implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0-alpha05' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' lintChecks 'com.github.thirdegg:lint-rules:0.0.5-alpha'