LoginSignup
4
4

More than 5 years have passed since last update.

Android SDK : Windows (x86) で SDK Manager が起動しない問題の対処

Last updated at Posted at 2014-12-09

現時点で最新版の Android SDK (r24) には、Windows (x86) 環境で SDK Manager が正常起動しないというバグがあります。

暫定対処ですが、android-sdk-windows\tools\lib\find_java.bat の27行目を以下のように修正すると起動できるようになります。(arch_ext=32 の後のスペースを抜く)

誤: find /i "x86" > NUL && set arch_ext=32 || set arch_ext=64
正: find /i "x86" > NUL && set arch_ext=32|| set arch_ext=64
4
4
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4