해결된 질문
작성
·
180
1
MainApplication.java 가 아닌
MainApplication.kt (Kotlin)일 경우
@Override
protected String getJSBundleFile() {
return CodePush.getJSBundleFile();
}
대신
override fun getJSBundleFile(): String {
return CodePush.getJSBundleFile()
}
추가하시면 됩니다.
답변