Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Vane
- JS
- Python
- 개발노트
- kotlin
- rubymine
- 루비
- IntelliJ
- plugin
- C
- react
- boj
- maven
- OTLanguage
- jetbrains
- ruby
- Java
- error
- GitHub
- Godot
- gnuplot
- Spring
- ruby2d
- OAuth
- RaspberryPi
- Android
- CPP
- Baekjoon
- Shell
- gradle
Archives
- Today
- Total
PersesTitan(페르) 기술블로그
[AndroidStudio] Error while waiting for device: Pixel 4 API 33 is already running. If that is not the case, delete *.lock and try again. 본문
Framework/Android
[AndroidStudio] Error while waiting for device: Pixel 4 API 33 is already running. If that is not the case, delete *.lock and try again.
PersesTitan(페르) 2023. 4. 14. 09:05안드로이드를 비정상적으로 종료하면 아래와 같은 락이 걸려버립니다.
Error while waiting for device: Pixel 4 API 33 is already running. If that is not the case, delete /Users/PersesTitan/.android/avd/Pixel_4_API_33.avd/*.lock and try again.
여기서 리눅스나 mac이면 터미널에 아래와 같은 명령어를 통해 간단하게 *.lock
를 제거할 수 있습니다.
컴퓨터마다 다르게 에러가 뜰텐데 delete
뒤에 있는 파일 경로를 그대로 복사해서 아래 명령어를 실행하면 됩니다.
rm <복사한 경로>
저 같은 경우 아래와 같이 입력하면 됩니다.
rm /Users/PersesTitan/.android/avd/Pixel_4_API_33.avd/*.lock
'Framework > Android' 카테고리의 다른 글
[AndroidStudio] 인터넷 연결하는 법('isConnected()' is deprecated 해결) (0) | 2023.07.31 |
---|---|
[AndroidStudio] 아이콘 변경하는 방법 (0) | 2023.07.28 |
[AndroidStudio][개발노트] 다운로드 Progess 구현 (0) | 2023.07.09 |
[AndroidStudio] ViewPager2과 TabLayout연결하기 (0) | 2023.06.29 |
[AndroidStudio] 액션바 숨기기 (0) | 2023.04.13 |