IT story

Android SDK 관리자 용 GUI가 사라 졌습니까?

hot-time 2020. 9. 7. 21:24
반응형

Android SDK 관리자 용 GUI가 사라 졌습니까?


저는 Android 용으로하는 일이 거의 없어서 약간 헷갈립니다. 뒤로는 Android Studio와 Android SDK의 두 가지 유형의 설치가있었습니다. IDEA가 있으므로 Studio가 필요하지 않습니다. 일반적으로 UI 도구가있는 SDK를 다운로드하여 구성 요소를 다운로드합니다.

방금 https://dl.google.com/android/repository/tools_r25.2.3-linux.zip을 받았는데 UI SDK Manager가 보이지 않습니다. bin/sdkmanager쉘 스크립트. 그러나 --list, 패키지 이름을 복사하여 붙여넣고 실행하는 sdkmanager데 너무 많은 시간이 걸리기 때문에 내 목적에 다소 불편합니다 .

지금 빨리 설치하는 방법은 무엇입니까?

추신. 중요한 경우를 대비하여 Ubuntu 16.10에 있습니다.

PS2. 문서에sdkmanager "platforms;android-25" 따라 시도했지만 약관에 동의 한 후 결과가 나오지 않았습니다. SDK 파일을 어디에 설치 했습니까? 설치 했나요? 놀랄 만한.


것 같은데 나는 유일한 사람이 아니에요 ,이 바보 같은 짓을 처리했다. 그것을 설치하는 방법

  1. 일부 폴더에 zip 압축풀면 . 나는 우편의 내용을 추출 하는 방법에 대해 그것은 실수였다. 스크립트가 찾을 수 없습니다./parent/parent/toolstools/androidsdk
  2. 설정 ANDROID_HOME/parent폴더.
  3. 실행 /parent/tools/android sdk하여 SDK 관리자의 GUI를 확인합니다.

구글, 사람들이 인터넷 검색을하는 데 40 분을 낭비 할 필요가 없도록 위와 같은 스크립트를 설치 zip에 남기는 것이 어려웠습니까?


공식적으로 GUI는 없어졌지만 유쾌한 사람들이 우리를 위해 마지막으로 저장했습니다 : installer_r24.4.1-windows.exe

발표 에 따르면 Google은 2015 년 6 월부터 Eclipse 용 ADT 플러그인을 지원하지 않으며 ADT 용 GUI도 전혀 지원하지 않습니다. 그들은 Android Studio 로의 전체 전환과 함께 결정을 설명합니다. 공식 Android 소스에는 잠재적 인 보안 버그가있는 것으로 확인되기 때문에 마지막 GUI 버전을 다운로드 할 수있는 링크가 없습니다.

따라서 링크가 변경되지 않을 때까지 마지막으로 저장된 버전을 다운로드 할 수 있습니다. 이미 발생한 경우 태그로 검색하십시오 .

링크 를 위해 Losin 'Me 에게 감사드립니다 :

에서 찾을 수 web.archive.org


파티에 늦었지만 여기에서 예전처럼 v24.4 설치 프로그램을 다운로드 할 수 있습니다 . 자체적으로 v25.x로 업데이트되고 모든 것이 예상대로 작동합니다. 또한 큰 ef'u Google.


명령 줄에서 다음을 입력하십시오.

tools/android sdk

Android SDK의 일반적인 GUI가 표시됩니다.

도움이 되었기를 바랍니다


안드로이드 빌드 도구를 25.3.0를 발표하기 때문에, 제거 androidCLI 명령을하고 그것을 대체 avdmanager하고 sdkmanager내부에있는 당신의$ANDROID_HOME/bin/tools

이 명령을 실행하여 sdk 스타일 경로 에서 사용 가능한 패키지 목록을 가져옵니다 .sdkmanager --list

특정 이미지를 설치하려면이 명령을 실행하십시오. sdkmanager --verbose "system-images;android-19;google_apis;x86"


If You have Android Studio, you can point your sdk manager in Android Studio to where you just installed your SDK. You can manage it from there. That's what I had to do. The command line was so tough for me as I didn't get the full package names when running sdkmanager --list command


Here is the link for download android sdk with GUI for windows, linux and mac:

Uncompressing and put the folder named tools inside androidsdk directory, search for android.bat: it's open GUI in windows.

Download packages and develop apps.


For using with Xamarin, The official Xamarin SDK Manager is now available for Visual Studio 2017 and above. It can be installed from under "Cross Platform Mobile" workload in the Visual Studio Installer. It replaces Google's standalone SDK Manager (which was deprecated in version 25.2.3 of the Android SDK Tools package).


I am sorry for bumping a necropost. But I have just released a simple Android SDK GUI. Maybe this little weekend project could save some people from headache of using sdkmanager command line or downloading android-tools twice.

You could check my project at AndroidGUI.

Fork as you please or better yet send me PR. Any help would be very much appreciated.

PS: It would be very useful if somebody could point me to the latest sdklib-*.jar source code. So that I could interface with Android SDK directly.


In the tools directory search for ' android.bat ' file and run it , GUI for SDK manager will open .

참고URL : https://stackoverflow.com/questions/41407396/is-gui-for-android-sdk-manager-gone

반응형