본문 바로가기
React-Native

React-Native WebView 컴파일 오류 해결 방법

by Dokon Jang 2020. 6. 22.
반응형

[개발 환경]

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
}
....

 

반응형

댓글