After upgrading my react native version from 0.63.3 to latest version, I am getting the following errors:
> Could not resolve all files for configuration ':classpath'.
> Could not find com.facebook.react:react-native-gradle-plugin:.
Required by:
project :
Following are the dependencies in my build.gradle file:
dependencies {
classpath("com.android.tools.build:gradle:7.0.4")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:4.1.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Would anyone be able to explain this to me? It would be greatly appreciated if you could help!
3
Answers
According to this RN issue: https://github.com/facebook/react-native/issues/33067
You issue might get fixed by going to your settings.gradle and replacing:
with:
The github issue that @RamaProg suggested does provide some insight but it was in the context of building
react-native
from source. And i believe that issue was created before0.68.1
was a stable public release.Following the upgrade guide here: https://react-native-community.github.io/upgrade-helper/?from=0.67.4&to=0.68.1
Suggests the following addititons to
settings.gradle
:And this change is what resolved the issue for me.
I got this issue recently after upgrading to v68+.
It was fixed when I added
react-native-gradle-plugin
package manually.yarn add react-native-gradle-plugin
This package was not included in upgrade helper.