On Apr 29, 8:54 pm, alexdonnini <alessdonn...@gmail.com> wrote:
> Could someone please explain to me why the public
> getNeighboringCellInfo() method in TelephonyManager.java causes my
> application to crash (see error log below)?
[...]
> 04-29 23:46:05.754: WARN/dalvikvm(5854): VFY: unable to resolve
> interface method 23808: Lcom/android/internal/telephony/
> ITelephony;.getNeighboringCellInfo ()Ljava/util/List;
> 04-29 23:46:05.754: WARN/dalvikvm(5854): VFY:  rejecting opcode 0x72
> at 0x0004
> 04-29 23:46:05.754: WARN/dalvikvm(5854): VFY:  rejected Lcom/android/
> locationtest/TelephonyManager;.getNeighboringCellInfo ()Ljava/util/
> List;
> 04-29 23:46:05.754: WARN/dalvikvm(5854): Verifier rejected class Lcom/
> android/locationtest/TelephonyManager;

com.android.locationtest.TelephonyManager.getNeighboringCellInfo tried
to use
com.android.internal.telephony.ITelephony.getNeighboringCellInfo, but
couldn't find it.

Normally the call to the "internal" package happens from
com.android.telephony.TelephonyManager.getNeighboringCellInfo.

Is the "locationtest" package yours?  Is there some weird class loader
stuff going on?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"android-framework" group.
To post to this group, send email to android-framework@googlegroups.com
To unsubscribe from this group, send email to 
android-framework+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/android-framework?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to