Issue
I want to use architecture project (todo list) but get this error when i want to run project
The project is using an incompatible version (AGP 7.3.0-alpha07) of the Android Gradle plugin. Latest supported version is AGP 7.2.1
Solution
Try to change AGP version to 7.2.1
in the project's build.gradle
file and sync the project:
buildscript {
//...
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
// ...
}
}
Answered By - Sergio
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.