skip to Main Content

Android Studio – How to add an additional Maven repository to Android Studio build

I have added the following to the dependencies part of my app build.gradle implementation 'org.seleniumhq.selenium:selenium-htmlunit-driver:3.56.0' But I get the error: Could not find org.seleniumhq.selenium:selenium-htmlunit-driver:3.56.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/org/seleniumhq/selenium/selenium-htmlunit-driver/3.56.0/selenium-htmlunit-driver-3.56.0.pom - https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-htmlunit-driver/3.56.0/selenium-htmlunit-driver-3.56.0.pom - https://jcenter.bintray.com/org/seleniumhq/selenium/selenium-htmlunit-driver/3.56.0/selenium-htmlunit-driver-3.56.0.pom Required by: project :app So…

VIEW QUESTION
Back To Top
Search