Home > Software design >  :app:dataBindingMergeDependencyArtifactsDebug' Error
:app:dataBindingMergeDependencyArtifactsDebug' Error

Time:01-02

What is causing the problem? I am encountering such an error in my application sale. I couldn't find anything exactly as a solution.

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:dataBindingMergeDependencyArtifactsDebug'.
> Could not resolve all files for configuration ':app:debugCompileClasspath'.
   > Could not resolve androidx.core:core-ktx: .
     Required by:
         project :app
      > Skipped due to earlier error
      > Failed to list versions for androidx.core:core-ktx.
         > Unable to load Maven meta-data from https://dl.bintray.com/kotlin/kotlin-eap/androidx/core/core-ktx/maven-metadata.xml.
            > Could not get resource 'https://dl.bintray.com/kotlin/kotlin-eap/androidx/core/core-ktx/maven-metadata.xml'.
               > Could not GET 'https://dl.bintray.com/kotlin/kotlin-eap/androidx/core/core-ktx/maven-metadata.xml'. Received status code 502 from server: Bad Gateway

* 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

CodePudding user response:

You need to declare your dependency correctly "androidx.core:core-ktx:$core_version"

CodePudding user response:

This is because bintray support is now no longer there. Go to your project level build.gradle and comment out the bintray dependencies in the allprojects and repositories section

Bintray Shutdown

  • Related