인프런 커뮤니티 질문&답변
(03:18) RN 버전에 따른 MainApplication.kt 사용자 가이드
해결된 질문
작성
·
268
1
MainApplication.java 가 아닌
MainApplication.kt (Kotlin)일 경우
@Override
protected String getJSBundleFile() {
return CodePush.getJSBundleFile();
}대신
override fun getJSBundleFile(): String {
return CodePush.getJSBundleFile()
}추가하시면 됩니다.
답변
답변을 기다리고 있는 질문이에요
첫번째 답변을 남겨보세요!





