diff --git a/app/build.gradle b/app/build.gradle index c995eaf6c..37d3c2da1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -414,6 +414,7 @@ dependencies { implementation Deps.mozilla_feature_site_permissions implementation Deps.mozilla_feature_readerview implementation Deps.mozilla_feature_tab_collections + implementation Deps.mozilla_feature_top_sites implementation Deps.mozilla_feature_accounts_push implementation Deps.mozilla_feature_webcompat implementation Deps.mozilla_feature_webnotifications @@ -468,7 +469,7 @@ dependencies { // Removed pending AndroidX fixes androidTestImplementation "tools.fastlane:screengrab:2.0.0" // androidTestImplementation "br.com.concretesolutions:kappuccino:1.2.1" - + androidTestImplementation Deps.espresso_core, { exclude group: 'com.android.support', module: 'support-annotations' } diff --git a/buildSrc/src/main/java/Dependencies.kt b/buildSrc/src/main/java/Dependencies.kt index 778bdcf3a..3636b2640 100644 --- a/buildSrc/src/main/java/Dependencies.kt +++ b/buildSrc/src/main/java/Dependencies.kt @@ -122,6 +122,7 @@ object Deps { const val mozilla_feature_readerview = "org.mozilla.components:feature-readerview:${Versions.mozilla_android_components}" const val mozilla_feature_tab_collections = "org.mozilla.components:feature-tab-collections:${Versions.mozilla_android_components}" const val mozilla_feature_accounts_push = "org.mozilla.components:feature-accounts-push:${Versions.mozilla_android_components}" + const val mozilla_feature_top_sites = "org.mozilla.components:feature-top-sites:${Versions.mozilla_android_components}" const val mozilla_feature_webcompat = "org.mozilla.components:feature-webcompat:${Versions.mozilla_android_components}" const val mozilla_feature_webnotifications = "org.mozilla.components:feature-webnotifications:${Versions.mozilla_android_components}"