Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

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

I updated my android studio from Android studio fox to Android studio Bumblebee 2021.1.1 but none of my projects can run in Android studio Bumblebee 2021.1.1. I ended up getting this beautiful error.

Open to view image

Here is my gradle file

plugins {
    id 'com.android.application' version '7.1.0' apply false
    id 'com.android.library' version '7.1.0' apply false
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
over 4 years ago · Santiago Trujillo
7 Respuestas
Responde la pregunta

0

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'
    }
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.1.1"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
over 4 years ago · Santiago Trujillo Denunciar

0

Add the buildscript in your build.gradle (project module)

  buildscript {

    repositories {
        google()
        mavenCentral()
    }
    dependencies {

        
        classpath 'your dependecy path'

    }
}

plugins {
    id 'com.android.application' version '7.1.1' apply false
    id 'com.android.library' version '7.1.1' apply false
    id 'org.jetbrains.kotlin.android' version '1.5.30' apply false
}


task clean(type: Delete) {
    delete rootProject.buildDir
}
over 4 years ago · Santiago Trujillo Denunciar

0

This happens to me with AS Bumblebee when I add a new module to my project. It adds these two lines to my project-level build.gradle in the plugins block:

    id 'com.android.library' version '7.1.1' apply false
    id 'org.jetbrains.kotlin.android' version '1.6.10' apply false

I removed them to fix the error.

over 4 years ago · Santiago Trujillo Denunciar

0

Please check your JDK version. At least your JDK version must be 11 Then restart Android studio Check this link for more information: https://developer.android.com/studio/releases/gradle-plugin#jdk-11

over 4 years ago · Santiago Trujillo Denunciar

0

It happened to me when I was trying to open a new project with a preset .gitignore and README.md files from github. AS Bumblebee gave an error also while doing the first sync. I tried couple of times with fresh install too. Same result.

I moved all files (including hidden .git folder) to temp another folder. Created new project into same folder and moved preset files/folders back.

over 4 years ago · Santiago Trujillo Denunciar

0

You can check the idea.log. this problem is caused by the network problem. Some areas cannot link to the newest gradle repository. If you want to solve this problem, change your network which can get connect with https://services.gradle.org/distributions/gradle-7.2-bin.zip.

over 4 years ago · Santiago Trujillo Denunciar

0

If You use Android studio default configuration try change the order of the repositories. Like:

pluginManagement {
    repositories {
        mavenCentral()
        gradlePluginPortal()
        google()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenCentral()
        google()
    }
}

Or

pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
    }
}

Or just try to take this in diffrent order. Kinda funny but in many cases it has worked for me.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda