解决方案如下:
找到安装根目录下find_java.bat文件
D:\WorkBook\iflytek\android\Android\sdk\tools\lib\find_java.bat
编辑文件27行处的代码:
In line 27 of tools/lib/find_java.bat has a problem:
find /i "x86" > NUL && set arch_ext=32 || set arch_ext=64
删除||符号前的空格:
You must remove space after "arch_ext=32". Correct code is:
find /i "x86" > NUL && set arch_ext=32|| set arch_ext=64
Android 开发:系统找不到指定的路径
最新推荐文章于 2024-06-14 18:03:33 发布