반응형
[개발 환경]
OS : Windows 10 React-Native : 0.62.2 React-Native-Webview : 10.3.1 |
React-Native에 웹뷰(WebView)를 적용하려니 아래와 같은 오류가 발생합니다
[오류]
> Task :react-native-webview:compileDebugKotlin Could not connect to kotlin daemon. Using fallback strategy. > Task :react-native-webview:compileDebugJavaWithJavac FAILED |
해결 방법은 React-Native 프로젝트의 Android 프로젝트의 컴파일 툴 및 버젼을 아래와 같이 수정 후 컴파일하면 해결됩니다.
[해결 방법]
React-Native 프로젝트의 하위 폴더 android 폴더의 build.gradle의 컴퍼일 툴 및 버전을 29로 변경하세요. buildscript { ext { buildToolsVersion = "29.0.3" compileSdkVersion = 29 minSdkVersion = 16 targetSdkVersion = 28 } .... |
반응형
'React-Native' 카테고리의 다른 글
React-Native iOS 앱 구글맵 링크 (0) | 2021.02.25 |
---|---|
React-Native iOS 애드몹(Admob) 적용 (0) | 2020.07.21 |
정상적인 React-Native 프로젝트 iOS 컴파일 시 오류 해결 방법 (0) | 2020.06.19 |
React-Native(리액트 네이티브) : 안드로이드 버들링 (0) | 2019.07.14 |
React-Native : 오류 : error: Build input file cannot be found: '.../node_modules/react-native/Libraries/WebSocket/libfishhook.a' (0) | 2019.06.06 |
댓글