Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Gradle Plugin 7.1.3, Plugin [id: 'com.android.application', version: '7.1.3', apply: false] was not found in any of the following sources [closed]

Since I upgraded my project to Android Gradle Plugin 7.1.3, I can't build it anymore.

Error :

Plugin [id: 'com.android.application', version: '7.1.3', apply: false] 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.

  • Exception is: org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.android.application', version: '7.1.3', apply: false] was not found in any of the following sources:

  • Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
  • Plugin Repositories (could not resolve plugin artifact 'com.android.application:com.android.application.gradle.plugin:7.1.3') Searched in the following repositories: Gradle Central Plugin Repository Google MavenRepo

build.gradle :

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

task clean(type: Delete) {
    delete rootProject.buildDir
}

settings.gradle :

pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}

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

include ':app'
rootProject.name = "MyApp"

The problem occurred after I clicked the "Begin Upgrade" button below the following message :

To take advantage of the latest features, improvements, and security fixes, we strongly recommend that you upgrade the Android Gradle Plugin in this project (MyApp) from the current version 7.1.2 to version 7.1.3.

like image 626
Denis Avatar asked Sep 06 '25 04:09

Denis


2 Answers

I know I am late in answering to this query and I am also aware that Android Gradle Plugin 7.1.3 has been released which solved the problem. But I just found out another issue with android studio and that is, when you're in proxy network. When in proxy network and we apply proxy settings and then if you switch to non-proxy network then the proxy details are still saved inside gradle.properties(Global Properties) file and that details are causing trouble to connect and download gradle files when we switch to non-proxy network. I faced this issue and when I remove all the proxy details manually from the gradle.properties(Global Properties) file then the problem is solved. I hope this helps for someone facing the same issue.

like image 180
Nabajyoti Das Avatar answered Sep 09 '25 18:09

Nabajyoti Das


I just had this problem too after receiving a recommendation to upgrade Gradle plugin, here's what I did,

I changed the following

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

in the build.gradle(Project: MyProjectName)

to this

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

and clicked on 'try again'

it SOLVED my issue

like image 21
Ntobeko Dindi Avatar answered Sep 09 '25 17:09

Ntobeko Dindi