Android SDK2.3入れたらadbが無くなった
参考
terminalでandroidコマンドで起動するAndoird SDK and AVD ManagerでAvailable Packagesをインストールしたら、Eclipseに
Could not find android-sdk/tools/adb! Please check the Android plugin's preferences.
と言われた。たしかにadbが消えてた。
tools/adb_has_moved.txt を見たら
The adb tool has moved to platform-tools/ If you don't see this directory in your SDK, launch the SDK and AVD Manager (execute the android tool) and install "Android SDK Platform-tools" Please also update your PATH environment variable to include the platform-tools/ directory, so you can execute adb from any location.
もう一度Android SDK and AVD Manager起動して、Available Packagesを見たらPlatform-toolsが現れてたのでインストール。
で、sdkのディレクトリの中にplatform-toolsというディレクトリができてて中にadbが入ってた。
pathに
$HOME/lib/android-sdk/platform-tools
を追加
で、Eclipse起動してもまだtools/adbが無いと言われる・・・
[Help]->[Check for Updates]でADT関係を全部アップデートして、Eclipse再起動したらよろしくなった。