gpt4 book ai didi

Android SDK 和 AVD Manager 将无法运行

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:23:00 27 4
gpt4 key购买 nike

我安装了 Android SDK 但我无法使用它,因为 AVD 和 SDK 管理器没有运行。当我尝试打开其中任何一个时,命令提示符窗口会弹出大约半秒钟然后关闭。我试过从命令提示符运行 exe 以查看是否有错误消息,但没有输出并且它的行为相同。我研究了这个问题,发现其他计算机也发生了完全相同的事情。我尝试了那里发布的一些解决方案:

似乎不起作用的解决方案

  • 将 JDK 位置添加到 PATH 环境变量的开头
  • 将 Android SDK 位置添加到 PATH 环境变量
  • 以管理员身份运行应用程序
  • 从用户 (C:/Users/[User Name]) 目录中删除 .android 文件夹
  • 安装在 C: 驱动器的根目录中,而不是在 Program Files 中

操作系统信息:Windows 7 家庭高级版、管理员权限


更新

我想我找到了问题的根源,但我仍然不知道如何解决它。问题似乎出在 C:\Android\android-sdk\tools 目录中的 android.bat 文件。它尝试调用 find_java.bat 但由于一个小的语法问题而无法调用。这是输出:


'C:\Android\ANDROI~1\tools\lib\find_java.exe -s' 不是内部或外部命令,也不是可运行的程序或批处理文件。

错误:找不到合适的 Java。为了正确使用Android Developer工具,您需要在系统上安装合适版本的 Java JDK。我们建议您安装 JavaSE 的 JDK 版本,可在此处获取: http://www.oracle.com/technetwork/java/javase/downloads

您可以在此处找到完整的 Android SDK 要求: http://developer.android.com/sdk/requirements.html


在对 android.bat 进行一些修改后,我能够让它调用 find_java.bat,无论我做什么,它都会出现一堆错误给它。我终于感到沮丧,决定在 java.exe 的位置进行硬编码。后来在批处理文件中还有另一个错误。我开始认为我的安装或批处理文件确实有问题。这是批处理文件 (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 %%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\androidprefs.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\common.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-compress* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\swtmenubar.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-logging* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-codec* %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

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

更新(再次)

我在 Virtualbox 中运行的 WinXP 上安装了 Android SDK,它运行良好。不过,我还是希望能够在 Win7 上使用它。

最佳答案

这就是我让它在 Windows 8 上运行的方式

  1. 添加 JAVA_HOME 环境变量并将其设置为您的 java安装位置(即 C:\Program Files (x86)\Java\jdk1.6.0_39\bin)

  2. 下一步编辑 C:\Users{YOURUSERNAME}\AppData\Local\Android\android-sdk\tools\android.bat 找到set java_exe= call lib\find_java.bat 行并将其更改为set java_exe=java.exe

  3. 保存文件,它应该运行

注意 如果您收到有关 swt 位置的错误,只需对路径进行硬编码即可。将其设置为 lib\x86 或 lib\x86_64

希望对你有帮助

关于Android SDK 和 AVD Manager 将无法运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11023179/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com