-1

Whenever I am trying to debug my application on my device, the code throws an exception.

The exception method called is:

 public NoClassDefFoundError(String detailMessage) {
        super(detailMessage);
    }

And detailMessage contains nothing but just gln in it. I dont know why this is happening. The app was starting fine for a while back.

The LogCat shows this:

07-03 01:25:40.253: I/dalvikvm(13268): Failed resolving Lcom/google/android/gms/location/internal/ParcelableGeofence; interface 4023 'Lgln;'
07-03 01:25:40.253: W/dalvikvm(13268): Link of class 'Lcom/google/android/gms/location/internal/ParcelableGeofence;' failed
07-03 01:25:40.253: E/dalvikvm(13268): Could not find class 'com.google.android.gms.location.internal.ParcelableGeofence', referenced from method glt.a
07-03 01:25:40.253: W/dalvikvm(13268): VFY: unable to resolve check-cast 2086 (Lcom/google/android/gms/location/internal/ParcelableGeofence;) in Lglt;
Maven
  • 14,587
  • 42
  • 113
  • 174

1 Answers1

0

You have to follow the manuals on how to include GooglePlay into your project. I forgot now, but this is one of these problems:

  • you have to mark the lib as exported
  • you have to import Google Play as an Eclipse project, then make your project depend on it
  • you have to include the jar as an android library and not standard jar.
  • Luka Bradeško
    • 542
    • 7
    • 16
    • It is included and was working fine for months now, untill yesterday suddenly. – Maven Jul 03 '14 at 05:17
    • I would try to remove it and then add it back to Eclipse. or event better, import the project again on different Eclipse Workspace. Seems that something got wrong with that. – Luka Bradeško Jul 03 '14 at 22:39