노력과 삽질 퇴적물
안드로이드: SDK 명령어 버전 본문
0. 필요한 파일
파일명 |
예시 경로 |
sdk-tools-windows-3859397.zip [#] | D:\dev_lib\android-sdk-windows\tools |
명령줄도구 zip파일 예시경로는
이전의 SDK zip파일 디렉토리 구조를 참조한것으로 최신 SDK에서는 자체 SDK/AVD 매니저가 없습니다.
1. 설치
1) 버전확인
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | (Win PowerShell) PS D:\dev_lib\android-sdk-windows\tools\bin> ./sdkmanager --list ... ... ... build-tools;26.0.3 | 26.0.3 | Android SDK Build-Tools 26.0.3 build-tools;27.0.0 | 27.0.0 | Android SDK Build-Tools 27 build-tools;27.0.1 | 27.0.1 | Android SDK Build-Tools 27.0.1 build-tools;27.0.2 | 27.0.2 | Android SDK Build-Tools 27.0.2 build-tools;27.0.3 | 27.0.3 | Android SDK Build-Tools 27.0.3 build-tools;28.0.0-rc1 | 28.0.0 rc1 | Android SDK Build-Tools 28-rc1 ... ... ... platforms;android-26 | 2 | Android SDK Platform 26 platforms;android-27 | 1 | Android SDK Platform 27 ... ... ... system-images;a...s_playstore;x86 | 1 | Google Play Intel x86 Atom Sys... tools | 26.1.1 | Android SDK Tools Available Updates: ID | Installed | Available ------- | ------- | ------- tools | 26.0.1 | 26.1.1 done | cs |
포스팅 시점(2018-04)에서 아래의 페이지들을 참조하면
SDK Build Tools Release Notes | Android Studio
SDK Tools Release Notes | Android Studio
업데이트시킬 버전이 있지만, 메이저 넘버상 생략했습니다.
2) 플랫폼 설치
아래의 예시처럼
SDK Platform Tools Release Notes | Android Studio
sdkmanager | Android Studio페이지를 참조한 설치명령을 실행하면 됩니다.
1 2 3 4 5 6 7 8 9 10 11 | PS D:\dev_lib\android-sdk-windows\tools\bin> ./sdkmanager "platform-tools" "platforms;android-27" Warning: File C:\Users\Cetus202\.android\repositories.cfg could not be loaded. License android-sdk-license: --------------------------------------- Terms and Conditions ... ... ... ... ... ... November 20, 2015 --------------------------------------- Accept? (y/N): y done | cs |
플랫폼 설치후 아래의 캡쳐처럼 확인이 가능합니다.
기본적인 설치는 다 됐습니다.
안드로이드 스튜디오나 VS등에서 제공하는 SDK관리자 메뉴로 추가적인 패키지를 설치&업데이트를 하면 됩니다.
기타. 참조자료
How do I download the Android SDK without downloading Android Studio? - Stack Overflow
기타. 변경이력
일자 |
변경이력 |
2018-04-23 | 초안 |
'📂게임개발 note > 모바일 개발' 카테고리의 다른 글
안드로이드: 이클립스 프로젝트를 안드로이드 스튜디오로 포팅 (0) | 2018.05.17 |
---|---|
크로스 플랫폼: 자마린 설치 번외, VS2017 (0) | 2018.05.11 |
크로스 플랫폼: Xamarin(자마린) 앱 개발 (2) (0) | 2016.12.29 |
유니티: 개발팁 및 최적화 (0) | 2016.08.17 |
안드로이드: 액티비티 생명주기 & 물리버튼 (0) | 2016.07.07 |