Android Question Can you help me read this error log ?

Devv

Active Member
Licensed User
Longtime User
I'am using eslocation2 library to know the phone location using internet

i get this error anyone can help me understanding this error ?

B4X:
** Activity (main) Create, isFirst = true **


** Activity (main) Resume **


** Service (internet) Create **


** Service (internet) Start **


** Service (phoner) Create **


** Service (phoner) Start **
** Service (internet) Start **


** Service (httputils2service) Create **


** Service (httputils2service) Start **


java.lang.Exception: Sub location_locationchanged signature does not match expected signature.


    at anywheresoftware.b4a.BA.raiseEvent2(BA.java:189)
    at anywheresoftware.b4a.BA.raiseEvent(BA.java:171)
    at smith.ed.location2.FindLocation$2.onLocationChanged(FindLocation.java:89)
    at android.location.LocationManager$ListenerTransport._handleMessage(LocationManager.java:255)
    at android.location.LocationManager$ListenerTransport.access$000(LocationManager.java:184)
    at android.location.LocationManager$ListenerTransport$1.handleMessage(LocationManager.java:200)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:176)
    at android.app.ActivityThread.main(ActivityThread.java:5419)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:525)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1046)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:862)
    at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
    at dalvik.system.NativeStart.main(Native Method)
java.lang.RuntimeException: java.lang.Exception: Sub location_locationchanged signature does not match expected signature.


    at anywheresoftware.b4a.BA.raiseEvent2(BA.java:213)
    at anywheresoftware.b4a.BA.raiseEvent(BA.java:171)
    at smith.ed.location2.FindLocation$2.onLocationChanged(FindLocation.java:89)
    at android.location.LocationManager$ListenerTransport._handleMessage(LocationManager.java:255)
    at android.location.LocationManager$ListenerTransport.access$000(LocationManager.java:184)
    at android.location.LocationManager$ListenerTransport$1.handleMessage(LocationManager.java:200)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:176)
    at android.app.ActivityThread.main(ActivityThread.java:5419)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:525)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1046)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:862)
    at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
    at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.Exception: Sub location_locationchanged signature does not match expected signature.
    at anywheresoftware.b4a.BA.raiseEvent2(BA.java:189)
    ... 14 more
 

Cableguy

Expert
Licensed User
Longtime User
Your sub declaration does not match the expected one... either you're missing a parameter ( or more) or you're declaring with the wrong type
 
Upvote 0
Top