0

I am a React Native Developer and I have a problem with the Android world. As I understand Maven is the repository for the dependencies.

Problem: this morning a dependency is on 404 on dl.google.com https://dl.google.com/dl/android/maven2/com/google/android/flexbox/1.0.0/flexbox-1.0.0.jar

Could not resolve all files for configuration ':app:releaseCompileClasspath'.

Does anyone know How can I fix this?

Could not resolve all files for configuration ':app:releaseCompileClasspath'

UPDATE:

Found that I am not the only one who's having this issue
https://github.com/google/flexbox-layout/issues/475

It seems to be wider than flexbox... Many dependencies are missing from google(), jCenter() and mavenCentral().
https://issuetracker.google.com/issues/120759347

David Leuliette
  • 1,595
  • 18
  • 26
  • 1
    Possible duplicate of [Failed to resolve: com.google.android:flexbox:1.1.0](https://stackoverflow.com/questions/53709146/failed-to-resolve-com-google-androidflexbox1-1-0) – nandsito Dec 10 '18 at 19:10
  • maven is not a repository but a tool for managing dependencies (it's actually much more than that). It seems the flexbox artifact is not found in the default repos, so you have to add a repo address in your `build.gradle`. See this question https://stackoverflow.com/questions/53709146/failed-to-resolve-com-google-androidflexbox1-1-0 – nandsito Dec 10 '18 at 19:15
  • everyone is having this today. including me. – Ziyo Dec 11 '18 at 03:21

1 Answers1

0

Problem solved!
All old artifacts are available again on maven.google.com

TLDR; I just delayed my deploy for 2 days

https://issuetracker.google.com/issues/120759347#comment106

David Leuliette
  • 1,595
  • 18
  • 26