diff --git a/app/build.gradle b/app/build.gradle index 15359909b..327c4ce48 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -520,6 +520,8 @@ dependencies { androidTestImplementation Deps.uiautomator // Removed pending AndroidX fixes androidTestImplementation "tools.fastlane:screengrab:2.0.0" + // This Falcon version is added to maven central now required for Screengrab + implementation 'com.jraska:falcon:2.2.0' // androidTestImplementation "br.com.concretesolutions:kappuccino:1.2.1" androidTestImplementation Deps.espresso_core, { diff --git a/build.gradle b/build.gradle index 1af415fe9..a68ebca0d 100644 --- a/build.gradle +++ b/build.gradle @@ -147,11 +147,7 @@ allprojects { //////////////////////////////////////////////////////////////////////////////// // Fastlane - // Doesn't seem to be available on Maven Central yet, and I couldn't find an issue for it - // https://github.com/fastlane/fastlane/issues/18174 - includeVersion("tools.fastlane", "screengrab", "2.0.0") - // https://github.com/jraska/Falcon/issues/52 - includeVersion("com.jraska", "falcon", "2.1.1") + // Both Screengrab and falcon are available on Maven Central } } }