분류 전체보기
-
안드로이드 스튜디오(Android Studio) config 폴더 경로 바꾸기Android 2020. 6. 1. 17:14
C:/Users/(계정 이름) 폴더에 들어가보면 .AndroidStudio 라는 폴더가 보입니다. 해당 폴더에는 config 폴더와 system 폴더가 있는데 IDE의 환경설정 파일들이 들어있는 폴더입니다. 해당 폴더의 경로를 변경하려면 1) .AndroidStudio 폴더를 지운다 -> 안드로이드 스튜디오를 실행할 때 새 경로 지정이 가능합니다. 2) idea.properties 파일에서 경로를 변경해준다. -> idea.properties 파일은 안드로이드 스튜디오 설치경로 아래 bin 폴더에 있습니다. 기본설정대로 설치하였다면 윈도우 환경에서 C:\Program Files\Android\Android Studio\bin 경로에 존재합니다. idea.properties을 문서편집기로 열어보면 conf..
-
This version of Android Studio cannot open this project, please retry with Android Studio x.0 or newer.Android 2020. 6. 1. 16:45
This version of Android Studio cannot open this project, please retry with Android Studio x.0 or newer. 해당 프로젝트는 x.0버전 이상의 안드로이드 스튜디오에서 실행할 수 있다는 메시지이다. 안드로이드 스튜디오를 업데이트 해야한다. Help -> Check for Updates
-
Could not find method leftShift() for arguments after updating studio 3.4Android 2020. 5. 7. 16:55
for task definitions no longer works. In other words, you can not use the syntax task myTask . Use the Task.doLast() method instead, like this: task myTask { doLast { ... ... }} ref : www.stackoverflow.com/a/55793096