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

Android Studio Arctic Fox : after update gradle error

Unable to load class 'org.gradle.api.publication.maven.internal.MavenPomMetaInfoProvider'. apply plugin: 'com.github.dcendents.android-maven' The following were changes done in app after gradle update in gradle/wrapper/gradle-wrapper.properties -distributionUrl=https://services.gradle.org/distributions/gradle-6.7.1-all.zip +distributionUrl=https://services.gradle.org/distributions/gradle-7.0.2-all.zip and under build.gradle - classpath 'com.android.tools.build:gradle:4.2.2' + classpath 'com.android.tools.build:gradle:7.0.0' - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0' + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.2' Adding app level…

VIEW QUESTION
Back To Top
Search