Home > database >  The project is using an incompatible version (AGP 7.3.0-alpha07) of the Android Gradle plugin
The project is using an incompatible version (AGP 7.3.0-alpha07) of the Android Gradle plugin

Time:05-27

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

CodePudding user response:

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'

        // ...
    }
}
  • Related