Message:

The connection to adb is down, and a severe error has occured.

You must restart adb and Eclipse.

Please ensure that adb is correctly located at '/.../.../android-sdks/platform-tools/adb' and can be executed.


Solve:

[OS - UBUNTU]

 1) sudo ./adb kill-server

 2) sudo ./adb start-server


[OS - WINDOWS]

 1) adb kill-server

 2) adb start-server

구글맵(google map) 사용시, LogCat에서
java.lang.NoClassDefFoundError: 가 뜬다면

1) AndroidManifest.xml 확인
2)  사이에 map library사용 설정을 했는지 확인

<application>
     ......
     <!-- map library 설정 -->
     <uses-library android:required="true" android:name="com.google.android.maps" />
     .....
</application>

+ Recent posts