question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

NoClassDefFoundError while loading my activity

See original GitHub issue

Awesome library, makes custom fonts a breathe. Work fine on my testing device (Nexus 5 running M) but crashed with the following stack trace on a Samsung (no surprise there) device (GT S7272 running 4.2.2) Any ideas?

Fatal Exception: java.lang.NoClassDefFoundError: uk.co.chrisjenx.calligraphy.R$attr
       at uk.co.chrisjenx.calligraphy.CalligraphyConfig$Builder.<init>(CalligraphyConfig.java:150)
       at net.sarmady.contactcarswithtabs.ContactCarsApplication.onCreate(ContactCarsApplication.java:145)
       at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1017)
       at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4552)
       at android.app.ActivityThread.access$1400(ActivityThread.java:150)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1340)
       at android.os.Handler.dispatchMessage(Handler.java:99)
       at android.os.Looper.loop(Looper.java:137)
       at android.app.ActivityThread.main(ActivityThread.java:5279)
       at java.lang.reflect.Method.invokeNative(Method.java)
       at java.lang.reflect.Method.invoke(Method.java:511)
       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1102)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:869)
       at dalvik.system.NativeStart.main(NativeStart.java)

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:31 (16 by maintainers)

github_iconTop GitHub Comments

1reaction
rajashripawar11commented, Apr 20, 2016

Checked… 1) Not using Android studio 2.0 so no instant run 2) Multidex 1.0.1 is in use 3) Calling Multidex.init() in attachBaseContext method of Application class & Calligraphy config calling in onCreate of Application class. I am facing this issue only on 4.0

1reaction
Mathblcommented, Dec 18, 2015

Happens to me a bit randomly on a Samsung (Galaxy Nexus) Device running 4.2.1.

I’m using MultiDex. I have two flavors. One that is minSdkVersion 21 and another minSdkVersion 15.

When I develop on my Nexus 5 I use the first one for faster multidex build. Sometimes, I give a go at the Galaxy Nexus to check whether everything still works fine on it. So I switch to the second flavor. I usually do a clean project and launch the app.

The app crashes on start on the Galaxy Nexus with java.lang.NoClassDefFoundError: uk.co.chrisjenx.calligraphy.CalligraphyConfig$Builder

If I try to launch the app multiple times, it randomly works after multiple try.

Read more comments on GitHub >

github_iconTop Results From Across the Web

java - NoClassDefFoundError while loading activity - Stack Overflow
While loading my app throws this error, then displays the layout normally. How can I stop it from throwing this error? Happens on...
Read more >
3 ways to solve java.lang.NoClassDefFoundError in Java J2EE
NoClassDefFoundError in Java comes when Java Virtual Machine is not able to find a particular class at runtime which was available at compile...
Read more >
How to Resolve the NoClassDefFoundError in Java - Rollbar
NoClassDefFoundError is a Java error that occurs when the JVM is unable to find a class at runtime which was available at compile-time....
Read more >
Activity not yet configured.: java.lang.NoClassDefFoundError
NoClassDefFoundError" mean and how to address it? Description: ... This issue happens for all JDBC related activities in the process.
Read more >
java.lang.NoClassDefFoundError using Java code - Spiceworks
1. you are invoking some java code and it has reference to some AliasLibrary Java jar that is not present. Check if you...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found