This message was deleted.
# community-support
s
This message was deleted.
m
Looks like the firebase plugin is adding the repo while you asked to manage them all from settings 😕
Do you have something like
Copy code
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
?
If yes then you could remove it
a
in which file?
m
Most likely a
settings.gradle.kts
(or
settings.gradle
)
Just grep for
FAIL_ON_PROJECT_REPOS
If you can confirm the firebase plugin is culprit of adding the repository, I would also file a bug there as it's not very nice to declare repositories under the hood
Build was configured to prefer settings repositories over project repositories but repository 'Google' was added by build file 'build.gradle'?
Well actually it might be you that added the Google repo?
In which case, grep for
google()
in
build.gradle
and move it to
settings.gradle
instead
a
ok, now it works, thanks
👍 1