Failed to resolve: org.adblockplus:adblock-android-webview:4.4.0
Failed to resolve: org.adblockplus:adblock-android-webview:4.4.0
Failed to resolve: org.adblockplus:adblock-android-webview:4.4.0
same error here too
This issue is stale because it has been open for 30 days with no activity.
This issue was closed because it has been inactive for 14 days since being marked as stale.
any solution !?
As shown in the screenshot above, the maven repository tells me that the artifact library org.adblockplus:adblock-android:4.4.0 is located in Appodeal. So I added a new maven repository url in my build.gradle.kts with :
maven { url = uri("https://artifactory.appodeal.com/appodeal-public/") }
pluginManagement {
repositori {
google {
konten {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositori {
google()
mavenCentral()
maven { url = uri("https://artifactory.appodeal.com/appodeal-public/") }
}
}
rootProject.name = "Browser"
include(":app")
But when searching for the library org.adblockplus:adblock-android-webview:4.4.0, the Maven repository actually points to the repository JCenter. I'm not sure why it points to the JCenter repository.
But surely the artifact library org.adblockplus:adblock-android-webview:4.4.0 is not in the repository JCenter. So just configure the Maven repository url to
https://artifactory.appodeal.com/appodeal-public/
as in the first step. And that works for now.