Emilio Colindres
08/31/2025, 10:57 PMDownloading com.android.library.gradle.plugin-8.11.1.pom...
and eventually fails with
Plugin [id: 'com.android.library', version: '8.11.1'] was not found in any of the following sources:
* Try:
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at <https://help.gradle.org>.
* Exception is:
org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.android.library', version: '8.11.1'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (could not resolve plugin artifact 'com.android.library:com.android.library.gradle.plugin:8.11.1')
Searched in the following repositories:
Google
MavenRepo
Gradle Central Plugin Repository
at org.gradle.plugin.use.resolve.internal.PluginResolutionResult.getFound(PluginResolutionResult.java:112)
at org.gradle.plugin.use.internal.DefaultPluginRequestApplicator.resolvePluginRequest(DefaultPluginRequestApplicator.java:197)
at org.gradle.plugin.use.internal.DefaultPluginRequestApplicator.applyPlugins(DefaultPluginRequestApplicator.java:101)
at org.gradle.kotlin.dsl.provider.PluginRequestsHandler.handle(PluginRequestsHandler.kt:45)
at org.gradle.kotlin.dsl.provider.StandardKotlinScriptEvaluator$InterpreterHost.applyPluginsTo(KotlinScriptEvaluator.kt:242)
at org.gradle.kotlin.dsl.execution.Interpreter$ProgramHost.applyPluginsTo(Interpreter.kt:387)
at Program.execute(Unknown Source)
at org.gradle.kotlin.dsl.execution.Interpreter$ProgramHost.eval(Interpreter.kt:516)
I've tried clearing global and local gradle caches, intellij caches, reinstalling intellij, restarting mac, turning vpn on and off since it was on the first time it happened, and nothing works. I've even tried a completely fresh project from scratch and it still didn't work
At this point i'm thinking google's maven repo might be down? because https://maven.google.com/web/index.html shows no libraries. but i've never visited the site before so idk if that's the case. Does any one have any ideas here?Emilio Colindres
08/31/2025, 11:02 PMrootProject.name = "common"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
include(":lib")Emilio Colindres
08/31/2025, 11:11 PMmbonnin
08/31/2025, 11:12 PMEmilio Colindres
08/31/2025, 11:13 PMmbonnin
08/31/2025, 11:13 PMmbonnin
08/31/2025, 11:14 PMEmilio Colindres
08/31/2025, 11:14 PMEmilio Colindres
08/31/2025, 11:15 PMEmilio Colindres
08/31/2025, 11:44 PMJacob Kwitkoski
09/04/2025, 1:46 AM