본문 바로가기

#FIXME12

C++ Visual Studio 오류 정리 비정적 멤버 참조는 특정 개체에 대해 상대적이어야 합니다. → 정적 멤버가 아니어서 일어나기도 함. → 비정적 멤버를 참조한 경우는 개체를 생성한 후, 참조하여야 함. MyClass* my; MyClass::MyFunc(); // Error my->MyFunc(); // OK C++ 인식할 수 없는 토큰입니다. 특수 문자 space가 임의로 끼어있었을 때 발생. 참고 : https://www.devoops.kr/10 2022. 9. 4.
java.lang.IllegalStateException: Room cannot verify the data integrity. Looks like you've changed schema but forgot to update the version number. You can simply fix this by increasing the version number. 앱 삭제 > 재 빌드 시 정상 작동함. 혹은 Room에서 위의 이미지처럼 DB 버전을 변경(현재보다 상위로)하여 작성하여도 정상 작동한다. manifest 파일의 allowBackup = true 속성 때문에 기존 앱의 DB와 충돌해서 나는 일이라고 하는데, 따라서 DB 버전을 올리거나, 아예 데이터를 삭제했을 때 충돌이 일어나지 않는 것 같다. 출처 : stackoverflow.com/questions/44197309/room-cannot-verify-the-data-integrity 2021. 3. 21.
Koin 사용 중 Inject() 사용 불가 문제 interface를 Inject하려고 했을 때 발생했던 문제로, 생성자로 건네받아 해결하는 방법이 있었으나 추가적으로 KoinComponent를 상속받도록 만들어주어 해결하였다. 참고자료 Koin how to inject outside of Android activity / appcompatactivity Koin how to inject outside of Android activity / appcompatactivity Koin is a new, lightweight library for DI and can be used in Android as well as in standalone kotlin apps. Usually you inject dependencies like this: class Spl.. 2021. 1. 1.
HTTP FAILED: java.lang.SecurityException: Permission denied (missing INTERNET permission?) 카카오 API 연동 중 HTTP FAILED: java.lang.SecurityException: Permission denied (missing INTERNET permission?) 오류 발생. 매니페스트 인터넷 접속 권한 문제로 를 매니페스트에 추가 이후 해결. 참고 자료 https://hwanine.github.io/android/Retrofit/ Android - Retrofit2을 사용하여 RestAPI 연동 (Kotlin) (1) Retrofit을 사용하여 네이버 RestAPI와의 연동하는 과정을 소개하겠습니다. hwanine.github.io 2020. 11. 6.
Cafe24 NodeJS 웹 호스팅 #FIXME Cafe24 NodeJS 웹 호스팅 사용하면서 발견했던 오류 및 해결 방법 정리. git 관련 오류 kex_exchange_identification: Connection closed by remote host fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. The authenticity of host '호스팅 주소 (IP주소)' can't be established. ECDSA key fingerprint is SHA256:암호화 된 퍼블릭 키 Are you sure you want to continue connecting (ye.. 2020. 9. 6.
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. from selenium import webdriver web = webdriver.Chrome(executable_path= r'/Users/yeon/Downloads/chromedriver') 위처럼 매우 단순한 코드를 짜다가 나온 에러이다. 해당 사항은 chromedriver의 경로와 일치하지 않아서 생긴 일이다. 이 경우에는 윈도우는 상대 경로가 아닌 절대 경로를 적어주고, 맥도 마찬자기로 위와 같이 /Users/이름/파일경로/chromedriver 를 사용하면 된다. 내 경우에는 /Users를 쓰지 않아서 발생한 오류였다. 2020. 8. 30.
[WebStorm] ERR Python ... https://blog.naver.com/PostView.nhn?blogId=foenix&logNo=221408975900&parentCategoryNo=&categoryNo=67&viewDate=&isShowPopularPosts=true&from=search 2019. 12. 15.
[WebStrom] To fix, right-click on PowerShell and run "as Administrator". 웹스톰을 종료하고 관리자 권한으로 재실행 후 터미널에서 명령어 입력하니 해결 됨. 2019. 12. 15.
[Unity] CommandInvokationFailure: Gradle build failed. CommandInvokationFailure: Gradle build failed. C:\Program Files\Unity\Hub\Editor\2018.3.2f1\Editor\Data\PlaybackEngines\AndroidPlayer/Tools\OpenJDK\Windows\bin\java.exe -classpath "C:\Program Files\Unity\Hub\Editor\2018.3.2f1\Editor\Data\PlaybackEngines\AndroidPlayer\Tools\gradle\lib\gradle-launcher-4.6.jar" org.gradle.launcher.GradleMain "-Dorg.gradle.jvmargs=-Xmx4096m" "assembleRelease" stderr.. 2019. 11. 30.
[Android Studio] Intel HAXM is required to run this AVD. Intel HAXM is required to run this AVD. HAXM device is not found. Enable VT-x in your BIOS security setting, ensure that HAXM is installed properly. Try disabling 3rd party security software if the problem still occurs. Hyper-V 펌웨어에 가상화 사용 > 아니오 인 경우에 컴퓨터를 Shift를 누른 채 재부팅한다. Hyper-V 펌웨어 가상화 사용을 예로 변경해주면 되는데 https://support.apple.com/ko-kr/HT207469 일단 맥(부트캠프-윈도우)에서는 안 된다. 그냥 테스트 폰 사용해야겠다... Ref. .. 2019. 10. 16.