From 9d3d9290975d0161f92b92bffe442e342e5397be Mon Sep 17 00:00:00 2001 From: Cristan Meijer Date: Wed, 16 Oct 2019 00:16:59 +0200 Subject: [PATCH] Depend on Fragment 1.0.0 We purposefully depend on version 1.0.0 because we don't want to accidentally access something that's not in v1. This way, the consumer is free to choose anything from [1.0.0, 2.0.0). --- stetho/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stetho/build.gradle b/stetho/build.gradle index 5e356101..d75550b0 100644 --- a/stetho/build.gradle +++ b/stetho/build.gradle @@ -20,7 +20,7 @@ dependencies { // Optional: reflection is used to test whether Fragment (and the transient AndroidX Core) are actually present. // TODO: either make the optional dependencies actually optional via `compileOnly` or remove the runtime checks - implementation 'androidx.fragment:fragment:1.1.0' + implementation 'androidx.fragment:fragment:1.0.0' testImplementation 'junit:junit:4.12' testImplementation('org.robolectric:robolectric:2.4') {