Skip to content Skip to sidebar Skip to footer

Android Application Runtimeexception In Activitythread Failed To Find Some Source?

I need assistance with resolving RuntimeException problem risen by native Android application. I can not define what causes this exception. Here is stack trace and code. What seems

Solution 1:

The exception stack trace + message is normally printed a bit more verbatim to logcat. The first line of the stack trace indicates that the activity object cannot be instantiated when the system calls Instrumentation.newActivity(ClassLoader, String, Intent). In logcat, you should be able to find something like "Unable to instantiate activity <component>: <message>", where <message> is something you're pretty interested in.


Post a Comment for "Android Application Runtimeexception In Activitythread Failed To Find Some Source?"