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 either to upgrade Android Studio or change AGP version to the stable version like for example 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
Answer Checked By - Mary Flores (JavaFixing Volunteer)