-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoClassDefFoundError #42
Comments
the same happened to me |
Did u find the solution for this error?? Could u help me solving this issue?? @ryanhaidy |
@vijayrawatsan Could you help me solve this issue ?? ... |
I got an error in my sample project using this library that says:
FATAL EXCEPTION: main
Process: com.garudainfinity.leumartsurvey, PID: 30819
java.lang.NoClassDefFoundError: com.vijay.jsonwizard.activities.JsonFormActivity
at com.garudainfinity.leumartsurvey.activities.SurveyListActivity.onClick(SurveyListActivity.java:156)
at android.view.View.performClick(View.java:5214)
at android.view.View$PerformClick.run(View.java:20978)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:145)
at android.app.ActivityThread.main(ActivityThread.java:6134)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1399)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1194)
this is how i call the activity:
intent = new Intent(this, JsonFormActivity.class);
String json = "Your complete JSON";
intent.putExtra("json", json);
startActivityForResult(intent, 1);
am i doing this wrong?
The text was updated successfully, but these errors were encountered: