diff --git a/app/build.gradle b/app/build.gradle index 0c9d6d3a369..a4b5b6b4572 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -267,9 +267,10 @@ dependencies { testImplementation 'com.squareup.okhttp3:mockwebserver:3.11.0' testImplementation "org.mozilla.components:lib-fetch-okhttp:${AndroidComponents.VERSION}" - androidTestImplementation "tools.fastlane:screengrab:2.0.0", { - exclude group: 'com.android.support', module: 'support-annotations' - } + 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 'androidx.test.espresso:espresso-contrib:3.1.0-alpha4', { exclude group: 'com.android.support', module: 'support-annotations' exclude group: 'com.android.support', module: 'support-v4' diff --git a/build.gradle b/build.gradle index 9fb84ada5a1..745ab6715d9 100644 --- a/build.gradle +++ b/build.gradle @@ -64,27 +64,6 @@ allprojects { maven { url "https://maven.mozilla.org/maven2" } - jcenter() { - content { - //////////////////////////////////////////////////////////////////////////////// - // JCenter is going away. Please do not add any new dependencies here. - // https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ - //////////////////////////////////////////////////////////////////////////////// - - // Used by detekt - // Issue for publishing to maven central: https://github.com/Kotlin/kotlinx.html/issues/173 - // Related detekt issue: https://github.com/detekt/detekt/issues/3461 - includeVersion("org.jetbrains.kotlinx", "kotlinx-html-jvm", "0.7.2") - includeVersion("org.jetbrains.kotlinx", "kotlinx-html-common", "0.7.2") - - // 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 - includeVersion("tools.fastlane", "screengrab", "2.0.0") - // https://github.com/jraska/Falcon/issues/52 - includeVersion("com.jraska", "falcon", "2.1.1") - } - } } }