From e16512996ef7d14a808a8cc48923eba3a945d21d Mon Sep 17 00:00:00 2001 From: cinos Date: Thu, 25 Apr 2019 17:31:04 +0800 Subject: [PATCH] bug fix for android build Android dependency 'androidx.core:core' has different version for the compile (1.0.0) and runtime (1.0.1) classpath --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index f1b54ece..2933abdf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -51,6 +51,6 @@ android { dependencies { implementation 'androidx.webkit:webkit:1.0.0' implementation 'androidx.browser:browser:1.0.0' - implementation 'androidx.appcompat:appcompat:1.0.2' + implementation 'androidx.appcompat:appcompat:1.0.0' implementation 'com.squareup.okhttp3:mockwebserver:3.11.0' }