Skip to content Skip to sidebar Skip to footer

Java.lang.runtimeexception: Unable To Instantiate Activity

I've tried all possible solutions to this problem, but nothing seems to work... The problem occured, when i've updated my SDK Tools version from r16 to r19 and SDK Platform-tools t

Solution 1:

It can't find the class: com.bugfullabs.depress.Splash. First thing is to make sure there's not a typo in the package name. (seems like it should be bugfullaps)

Next, is the Splash class contained in a library? If so, check your Java Build Path configuration and make sure under the Order and Export tab that your library file is checked so that it's exported with the application.

EDIT: Just remembered, if you have a lib directory, rename it to libs. That's one of the things that changed from the version you were using. Good luck!

Post a Comment for "Java.lang.runtimeexception: Unable To Instantiate Activity"