react native) 에러 Could not find com.facebook.react:react-native:0.71.0-rc.0


react native) 에러 Could not find com.facebook.react:react-native:0.71.0-rc.0

해결법 android/buld.gradle 파일에 allprojects에 아래코드 추가하면 해결됨 def REACT_NATIVE_VERSION = new File(['node', '--print',"JSON.parse(require('fs').readFileSync(require.resolve('react-native/package.json'), 'utf-8')).version"].execute(null, rootDir).text.trim()) allprojects { configurations.all { resolutionStrategy { // Remove this override in 0.65+, as a proper fix is included in react-native itself. force "com.facebook.react:react-native:" + REACT_NATIVE_VERSION } }...



원문링크 : react native) 에러 Could not find com.facebook.react:react-native:0.71.0-rc.0