[IntelliJ/GitHub] 인텔리제이와 깃헙 연동하기
2022. 3. 10. 20:23
IDE/IntelliJ
IntelliJ와 gitHub 연동하는 방법 1️⃣ github 레파지토리 생성 2️⃣ 인텔리제이에서 File > Settings > Version Control > GitHub > 깃헙 계정 로그인 미리 해놓은 후 add 하면 계정 연동 3️⃣ 깃 명령어를 통해 연동시키기 $ git init $ git add . $ git commit -m "커밋 내용" $ git remote add origin 깃헙 url 입력 $ git config remote.origin.url # url 정보 확인 $ git config user.name # user name 확인 $ git push -u origin master
[Eclipse] 프로젝트가 인식되지 않는 오류
2022. 2. 28. 20:36
IDE/Eclipse
The project description file (.project) for '프로젝트이름' is missing. This file contains important information about the project. The project will not function properly until this file is restored. 1️⃣ .metadata/.plugins/org.eclipse.core.resources를 삭제 2️⃣ 다시 import하기 이게 안 먹히는 경우😥 이클립스에서 폴더를 삭제하고 다시 import 하거나 새로 생성하기 이때는 local에서 파일 삭제를 같이 진행해서 날려줘야 함(백업은 필수)
[Eclipse] errors running builder 'integrated external tool builder' 에러 해결
2022. 2. 17. 20:28
IDE/Eclipse
Errors running builder 'integrated external tool builder' 프로젝트 오른쪽 클릭 -> properties -> builders -> 엑박이 떠있는 builder 삭제
[Eclipse] Error running builder "Integrated External Tool Builder" on project 해결 방법
2022. 2. 4. 20:44
IDE/Eclipse
Error running builder "Integrated External Tool Builder" on project 해결 방법 이클립스 빌드시에 위와 같은 에러가 발생하면 프로젝트 우클릭 👉 properties 클릭 👉 Builders 클릭 👉 엑박 뜨는 builder 삭제

디버깅 시 JDI thread evaluations has encountered a problem 해결 방법
2022. 1. 18. 20:52
IDE/Eclipse
JDI thread evaluations has encountered a problem 에러 Watch 화면에서 값을 잡고 있어서 문제가 됨 해결 방법 우클릭 하여 Remove 혹은 Remove All을 통해 값을 정리 해주면 됨
app:processDebugAndroidTestManifest FAILED 에러 해결
2022. 1. 14. 20:38
IDE/Android Studio
app:processDebugAndroidTestManifest FAILED 에러 해결 방법 Clean Build and Rebuild or Invalidate Caches 를 통해 간혹 해결되기도 하지만 몇번 빌드하다 보면 다시 나타는 경우가 있음 이 에러는 여러가지 라이브러리를 가져다 쓰는중에 라이선스파일 충돌 혹은 라이브러리 중복 로드로 인해 발생한다고 함 나의 경우 build.gradle(app) 파일의 아래 부분을 androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' 👇 androidTestImplementation 'a..

FAILURE: Build failed with an exception. 에러 해결
2022. 1. 13. 20:33
IDE/Android Studio
FAILURE: Build failed with an exception. 에러 원인 gradle 홈을 설정해주지 않아 생긴 에러 해결 방법 File > Settings > Build, Execution, Deployment > Build Tools > Gradle 못찾겠으면 Gradle 검색 Gradle user home: 에 안드로이드 프로젝트 경로의 .gradle 경로를 설정해줌

Failed to install the following Android SDK packages as some licences have not been accepted 에러 해결 방법
2022. 1. 7. 20:53
IDE/Android Studio
Failed to install the following Android SDK packages as some licences have not been accepted. build-tools;30.0.2 Android SDK Build-Tools 30.0.2 To build this project, accept the SDK license agreements and install the missing components using the Android Studio SDK Manager. 빌드 시 이런 에러가 발생한다면 SDK 라이선스를 받아주면 해결됨 해결 방법 File > Settings > Appearance & Behavior > System Settings > Android SDK 로 이동 > SD..
Web App Libraries가 잘 안잡힌 경우(java)
2021. 12. 13. 20:00
IDE/Eclipse
Java Build Path > Libraries > Web App Libraries가 잘 안잡힌 경우 1️⃣ 프로젝트 우클릭 > Properties > Deployment Assembly > Add > Java Build Path Entries > Maven Dependencies 선택 2️⃣ 프로젝트 우클릭 > Properties > Java Build Path > Libraries > Add Library... > Maven Managed Dependencies 선택 3️⃣ 만약 메이븐 프로젝트가 아닌 경우 프로젝트 우클릭 > Maven > Update Project... 클릭 이때 force Update 해주기

이클립스 실행 오류
2021. 9. 17. 20:15
IDE/Eclipse
A java Runtime Environment(JRE) or Java Development Kit(JDK) must be available in order to run Eclipe. 아래의 오류가 뜨는 경우 잘못 설정된 jdk 경로 혹은 버젼를 변경해주면 됨 1️⃣ jdk를 다운받은 위치를 찾아 복사하기(혹은 버젼 확인하기) 2️⃣ 이클립스 폴더에 들어가 아래의 ini파일을 메모장으로 열기 3️⃣ -vm 밑에 jdk 경로 혹은 버전을 내 컴퓨터 환경의 jdk와 맞춰줌 4️⃣ 변경 완료(버젼 변경)