On Mar 15, 10:15 pm, micah craig <[email protected]> wrote:
> Here is my complete error output:
> 03-16 04:47:44.411: WARN/dalvikvm(628): VFY: unable to resolve virtual
> method 140: Lorg/apache/commons/digester/Digester;.setValidating (Z)V
> 03-16 04:47:44.421: WARN/dalvikvm(628): VFY:  rejecting opcode 0x6e at
> 0x000e
> 03-16 04:47:44.421: WARN/dalvikvm(628): VFY:  rejected Lcom/
> playfoursquare/android/CheckinsApi;.<init> (Ljava/lang/String;)V


The class com.playfoursquare.android.CheckinsApi tried to use
org.apache.commons.digester.Digester.setValidating (boolean), but that
method could not be found.

You code compiled successfully, so it appears that some of the code
you compiled against is not being included in your app.  You can use
the "dexdump" utility (or "dexlist" if you have full sources) to
examine the contents of your APK.

If you're including code from an external library, remember to use the
"uses-library" statement in your Android manifest.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to