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

Time:01-02

Could not find com.android.tools.build:gradle:7.3.3.

Searched in the following locations:

CodePudding user response:

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.

CodePudding user response:

as we discussed in the comments , you have to set up a proxy for gradle , I suggest psiphone which is free and can define the port in the settings .

Here is an old answer of mine for the same related issue .

  • Related