Home > Net >  Gradle Issue in Android Studio
Gradle Issue in Android Studio

Time:03-09

Extracted the android package from ionic project, opened it in Android Studio,

Distribution URL : https\://services.gradle.org/distributions/gradle-7.4-all.zip

Inside Project level build.gradle : classpath 'com.android.tools.build:gradle:7.4'

Inside cash.properties : gradle.version=7.4

Getting below error in Android Studio :

FAILURE: Build failed with an exception.

  • What went wrong: A problem occurred configuring root project 'android'.

Could not resolve all artifacts for configuration ':classpath'. Could not find com.android.tools.build:gradle:7.4. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.4/gradle-7.4.pom - https://jcenter.bintray.com/com/android/tools/build/gradle/7.4/gradle-7.4.pom Required by: project :

  • Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

  • Get more help at https://help.gradle.org

BUILD FAILED in 746ms

What might be the Issue ?

CodePudding user response:

From what i've seen here, version 7.4 is not yet available on Google maven repositories.

You could try targeting a lower version (like 7.3.0-alpha05, or 7.1.2 if you need stable release), and don't forget to set the same version to your distributionUrl.

  • Related