[Y] I have searched existing issues and confirmed this is not a duplicate
Issues and steps to reproduce
After I did a cache clearance of my Android studio, I started to see issues in downloading the dependency from Maven. Looks like its not available right now and this is so disappointing. It has impacted our development time so much.
Expected behavior
Sync gradle
gradle will try to download flexbox-3.0.0.pom
Shows not available instead of downloading the dependency
Version of the flexbox library
3.0.0
Link to code
* What went wrong:
Execution failed for task ':app:checkDebugAndroidTestDuplicateClasses'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not find com.google.android:flexbox:3.0.0.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/google/android/flexbox/3.0.0/flexbox-3.0.0.pom
- https://repo.maven.apache.org/maven2/com/google/android/flexbox/3.0.0/flexbox-3.0.0.pom
Required by:
project :app
I also ran into this problem. I found this library on google maven repository. You can try this dependency notation:
implementation 'com.google.android.flexbox:flexbox:3.0.0'
I hope it helps
Issues and steps to reproduce
After I did a cache clearance of my Android studio, I started to see issues in downloading the dependency from Maven. Looks like its not available right now and this is so disappointing. It has impacted our development time so much.
Expected behavior
Version of the flexbox library
3.0.0
Link to code