IDE 21

[IntelliJ/GitHub] 인텔리제이와 깃헙 연동하기

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

IDE/IntelliJ 2022.03.10

[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에서 파일 삭제를 같이 진행해서 날려줘야 함(백업은 필수)

IDE/Eclipse 2022.02.28

app:processDebugAndroidTestManifest FAILED 에러 해결

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..

IDE/Android Studio 2022.01.14

Failed to install the following Android SDK packages as some licences have not been accepted 에러 해결 방법

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..

IDE/Android Studio 2022.01.07

Web App Libraries가 잘 안잡힌 경우(java)

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 해주기

IDE/Eclipse 2021.12.13

이클립스 실행 오류

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️⃣ 변경 완료(버젼 변경)

IDE/Eclipse 2021.09.17