Reputation: 101
I am currently getting a couple of unknown crash reports on the android developer console. They are quite inexpressive. Its an InvocationTargetException, but I have no clue where it is coming from. Maybe some framework that I am using which is using reflections?
java.lang.RuntimeException:
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:831)
Caused by: java.lang.reflect.InvocationTargetException:
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run
(ZygoteInit.java:941)
Does anyone have an idea about this or maybe has the same problem?
Upvotes: 2
Views: 56
Reputation: 13627
Common libraries which we use mostly that are using reflection are
1.Gson
2.Retrofit
Upvotes: 1