2011. 3. 14. 10:42
Titanium Mobile SDK 사용중 Android SDK 설정 관련 오류 해결 그거/Mobile2011. 3. 14. 10:42
Titanium Mobile SDK 설치 후
예제인 KitchenSink를 실행해보려고 했더니,
아래와 같은 오류가 발생한다.
You need to specify your Android SDK location!
Please go to the Edit Profile tab under the Profile perspective to set this value.
Android SDK를 설정하란 소린데...
이미 설치되어 있는 Android SDK를 설정하면
Couldn't find abd.exe or android.bat in your SDK's "tools" directory.
You may need to install a newer version of the SDK tools.
You may need to install a newer version of the SDK tools.
요런 에러가 나는 경우가 있는데....
찾아보니. Android SDK 의 구조가 변경되서 그런거라고. 아래와 같이 조치하면 된다고 한다.
cd C:\Program Files (x86)\Android\android-sdk-windows\tools mklink adb.exe ..\platform-tools\adb.exe mklink AdbWinApi.dll ..\platform-tools\AdbWinApi.dll
tools 밑의 adb.exe 파일을 찾고 있으니
platform-tools 밑의 adb.exe 의 링크를 만들어주면 된다는 얘기.
아니면. adb.exe 파일을 tools 디렉토리 밑으로 복사해도 된다고 한다.
단!
Android SDK 를 update 할 때마다 이걸 해줘야 된다는거. ㅋㅋ
'그거 > Mobile' 카테고리의 다른 글
나의 첫번째 Sencha Touch 를 이용한 App. (0) | 2012.07.25 |
---|---|
Mobile 개발 관련 자료 조사 (0) | 2012.06.07 |
Android Emulator 에 Proxy 설정하기 (0) | 2012.01.31 |
XMPP(Extensible Messaging & Presence Protocol) (0) | 2011.06.08 |
C2DM(Cloud To Device Messaging) (0) | 2011.06.08 |