Bumblebee Android studio Plugin [id: ‘com.android.application’, version: ‘7.1.0’, apply: false] was not found in any of the following sources:

I have the same problem。 Here’s how I did it: //Comment the following code from settings.gradle: /*pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() } }*/ dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() } } Modify the buildScript node in build.gradle in the project root directory: buildscript { ext { kotlin_version = ‘1.6.10’ compose_version = ‘1.0.5’ … Read more