0

I just started at a new job where we are building an app in React Native. When building the android version I was getting errors that said

Could not resolve all files for configuration ':app:debugCompileClasspath'.
> Could not resolve com.facebook.react:react-native:0.12.+.

My coworkers weren't getting this error but I was. I found this solution on github issues that ended up fixing the problem for me, but we don't want to commit a change to our build process without understanding why it is happening or why the fix works. Does anybody have more insight to what was happening or why the fix worked?

We are using Gradle and it is properly configured under allprojects -> repositories -> maven { url "https://jitpack.io" }

1 Answers1

0

Seems like Jitpack is having DNS issues according to this Github issue. My coworkers likely have the dependencies cached so that would be why it is working on their machines but not mine