バックアップSDKからAndroid.batもコピーしましたが、まだ機能していません。前もって感謝します。
おそらく、sdk/toolsフォルダーのすべてのコンテンツも欠落していますか?
この問題を解決する最善の方法は、sdk/tempフォルダーに移動することです。そこで、「tools_r24.0.1-windows」のような名前のZipファイルを見つけます(バージョン番号は異なります)
それをどこかにコピーして抽出します。抽出されたフォルダー内には、「tools」という名前のフォルダーがあります
そのフォルダーをsdk /にコピーし、sdk /の現在のツールフォルダーを置き換えます
そして出来上がり! SDKとAVDが再び機能し、すべての仮想デバイスが復元されます!
私が持っている最良のソリューションは、SDKツールのみをダウンロードすることです: http://developer.Android.com/sdk/index.html
->その他のダウンロードオプション-> SDKツールのみ-> Android-sdk_r24。*。*-windows.Zip
Update:Webコンテンツが更新されました。次のセクションに進む必要があります。
「コマンドラインツールのみを入手する」(オペレーティングシステムに応じてツールをダウンロードする)
。
ツールを必要とするSDKの場所に抽出します。
私は実際には理解できません、なぜあなたはそれを他の場所からダウンロードしないのですか、ここにAndroid.batがあります:
@echo off
rem Copyright (C) 2007 The Android Open Source Project
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.Apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem Useful links:
rem Command-line reference:
rem http://technet.Microsoft.com/en-us/library/bb490890.aspx
rem don't modify the caller's environment
setlocal
rem Set up prog to be the path of this script, including following symlinks,
rem and set up progdir to be the fully-qualified pathname of its directory.
set prog=%~f0
rem Grab current directory before we change it
set work_dir=%cd%
rem Change current directory and drive to where the script is, to avoid
rem issues with directories containing whitespaces.
cd /d %~dp0
rem Check we have a valid Java.exe in the path.
set Java_exe=
call lib\find_Java.bat
if not defined Java_exe goto :EOF
set jar_path=lib\sdkmanager.jar;lib\swtmenubar.jar
rem Set SWT.Jar path based on current architecture (x86 or x86_64)
for /f "delims=" %%a in ('"%Java_exe%" -jar lib\archquery.jar') do set swt_path=lib\%%a
:MkTempCopy
rem Copy Android.bat and its required libs to a temp dir.
rem This avoids locking the tool dir in case the user is trying to update it.
set tmp_dir=%TEMP%\temp-Android-tool
xcopy %swt_path% %tmp_dir%\%swt_path% /I /E /C /G /R /Y /Q > nul
copy /B /D /Y lib\common.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-codec* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-compress* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-logging* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\dvlib.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\guava* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\httpclient* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\httpcore* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\httpmime* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\layoutlib-api.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\org-Eclipse-* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\sdk* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\swtmenubar.jar %tmp_dir%\lib\ > nul
rem jar_path and swt_path are relative to PWD so we don't need to adjust them, just change dirs.
set tools_dir=%cd%
cd /d %tmp_dir%
:EndTempCopy
rem The global Android_SWT always override the SWT.Jar path
if defined Android_SWT set swt_path=%Android_SWT%
if exist "%swt_path%" goto SetPath
echo ERROR: SWT folder '%swt_path%' does not exist.
echo Please set Android_SWT to point to the folder containing swt.jar for your platform.
goto :EOF
:SetPath
rem Finally exec the Java program and end here.
REM set REMOTE_DEBUG=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
call "%Java_exe% %REMOTE_DEBUG%" "-Dcom.Android.sdkmanager.toolsdir=%tools_dir%" "-Dcom.Android.sdkmanager.workdir=%work_dir%" -classpath "%jar_path%;%swt_path%\swt.jar" com.Android.sdkmanager.Main %*
rem EOF