Firebase 연동 끝나고 나서 실행 하는 순간 위와 같은 문제가 발생했다;
덤) :app:checkDebugDuplicateClasses 문제도 발생; @_@
Java.lang.StackOverflowError 해결방법
node_modules 폴더 삭제 > npm or yarn install > cd android > gradlew clean
org.gradle.jvmargs=-Xmx2048m -Xms2048m -XX:ThreadStackSize=4096 -XX:CompilerThreadStackSize=4096
:app:checkDebugDuplicateClasses 해결방법
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules
implementation 'com.android.support:multidex:2.0.1'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
// Add this line here
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
//...omit some code
}
코틀린이 업데이트를 해서 그런다고 한다 -_-;;
Add this line here
에 있는 코드를 넣으면 끝