Debugging
-
[React-native] 개발 환경 구축시 에러 메세지(Window 환경)Debugging 2021. 12. 11. 11:36
1. Could not determine the dependencies of task * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > SDK location not found. Define location with an ANDROID_SDK_ROOT environment variable or by setting the sdk.dir path in your project's local properties file at 'your_project\android\local.properties'.Android Studio 환경 변수 설정을 하지 않을 경우 발생할 수 있다. 제어판 > ..
-
[Android]AppDatabase_lmpl does not exist(Room)Debugging 2021. 9. 8. 09:36
Kotlin을 사용하는 경우 앱 build.gradle에서 annotationProcessor를 kapt로 변경하고 gradle plugin 추가한다. apply plugin: 'kotlin-kapt' dependencies { def room_version = "2.3.0" // check latest version from docs ... implementation "androidx.room:room-ktx:$room_version" kapt "androidx.room:room-compiler:$room_version" }