Wednesday 3 August 2016

debugging - android application suddenly stop working when change testing device

I was working in android device with no problem



but once I try to test my application on another device I got the following exception in the start of the app



FATAL EXCEPTION: main
Process: com.forsale.forsale, PID: 9040
java.lang.VerifyError: com/google/android/gms/measurement/internal/zzt
at com.google.android.gms.measurement.AppMeasurementContentProvider.onCreate(Unknown Source)

at android.content.ContentProvider.attachInfo(ContentProvider.java:1656)
at android.content.ContentProvider.attachInfo(ContentProvider.java:1627)
at android.app.ActivityThread.installProvider(ActivityThread.java:4887)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:4474)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4411)
at android.app.ActivityThread.access$1500(ActivityThread.java:142)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1263)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5118)

at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:605)
at dalvik.system.NativeStart.main(Native Method)


I don't know what is the problem exactly and why it is happening now, although it is working in other devices

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...