Could not find com.android.tools.build:gradle:7.3.3. error found in buil.gradle file, please help me out

Viewed 21239
1 Answers

The "com.android.tools.build:gradle:$version" is what we called Android Gradle Plugin(AGP), its latest stable version is 7.0.4 (until 1st Jan 2022), you can check all available versions here.

The 7.3.3 is for the Gradle platform itself, you can check all available versions here.

For their relationship, please check here.

Related