Getting this error on JellyBean:
01-11 18:26:52.030: E/AndroidRuntime(16517): FATAL EXCEPTION: main
01-11 18:26:52.030: E/AndroidRuntime(16517): java.lang.No
It happened to me when I added google-play-services_lib
library project (from ASDK extras) to my IDE (IntellyJ Idea), per official google docs. The library project references google-play-services.jar
which in turn needs support-v4 jar, but this dependency is not included into google-play-services_lib
.
In the logcat there were other warning about missing support-v4 classes too.
Adding support-v4 jar manually to main application project solved the issue.