'Plugin com.android.application not found when running app in android studio chipmunk canary 7
I had downloaded android studio chipmunk canary 7 and faces this problem :
Plugin [id: 'com.android.application', version: '7.2.0-alpha07', 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.2.0-alpha07', 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.2.0-alpha07')
Searched in the following repositories:
please any help ??
Solution 1:[1]
plugins {
id 'com.android.application' version '7.2.0-rc02' apply false
id 'com.android.library' version '7.2.0-rc02' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
Update plugins in your build gradle file
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Adem ATICI |