본문 바로가기

Tips/Errors26

[svelte template clone][ 'degit@latest' ] 설치가 오류 코드 7로 실패했습니다 svelte template 프로젝트를 클론해오기 위해 npx degit sveltejs/template svelte-app 명령어를 입력했더니 아래와 같이 에러 메세지가 뜨면서 실패했다. $ npx degit sveltejs/template svelte-app Error: EEXIST: file already exists, mkdir 'C:\Users\xxx' TypeError: Cannot read property 'loaded' of undefined at exit (C:\nodejs\node_modules\npm\lib\utils\error-handler.js:97:27) at errorHandler (C:\nodejs\node_modules\npm\lib\utils\error-handler.js.. 2021. 7. 27.
오라클 디벨로퍼 실행 안 될 때. 안 켜질 때. 오라클 디벨로퍼를 실행했는데 이 창만 뜨고 바로 꺼져버릴 때가 있다. 이 창이 거의 뜨자마자 바로 꺼져서 보이지도 않을 수도 있다. 1. %appdata% 폴더로 이동한다. 2. SQL Developer 폴더를 삭제한다. 3. SQL Developer를 다시 실행하면 켜진다. 이런 경우는 왜 생기는 걸까. 2020. 12. 11.
[android][react-native]The number of method references in a .dex file cannot exceed 64K. React Native로 앱을 구성하는중. 앱의 규모가 점점 커지면서 아래 오류가 발생했다. 어제까지만해도 문제없던 소스가 갑자기 안되니 당황스러웠다. 다행히 해결하는 가이드 문서가 에러로그에 함께 있었다. developer.android.com/studio/build/multidex 64K가 넘는 메서드의 앱에 관해 멀티덱스 사용 설정 | Android 개발자 | Android Developers 앱이 여러 DEX 파일을 빌드하고 읽을 수 있도록 하는 multidex라는 앱 구성의 사용설정 방법에 관해 알아보세요. developer.android.com 우선 build.gradle의 minSdkVersion을 21로 맞추어 해결했다. > Task :app:mergeDexDebug FAILED Depre.. 2020. 11. 11.
[MeDVpDrv.sy, javax.mail] Gmail로 이메일 발송 테스트 중 오류 props.put("mail.smtp.starttls.enable", "true"); props.put("mail.smtp.host", "smtp.gmail.com"); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.port", "587"); 로컬에서 자바프로젝트를 생성하고 mail.jar(javax.mail)를 추가해서 테스트할 때 설정했던 프로퍼티. 이대로 설정하고 코드를 실행했더니 블루스크린이 뜨면서 MeDVpDrv.sy 어쩌고 오류가 떴다. 뭐가 꼬였나 싶어서 피씨가 다시 부팅된 후 다시 시도해봐도 마찬가지. 두 번째 블루스크린이 뜨고 난 후에는 이클립스를 켜보니 MailSender.java 파일의 코드가 통째로 날아가버린 광경까지 볼 수 .. 2020. 6. 26.