java - I am trying to build a sample App from a Third Party SDK. I am getting a class not found exception and I am not able to figure out why? -
below logcat :
06-26 21:31:41.352: d/androidruntime(9911): shutting down vm 06-26 21:31:41.352: w/dalvikvm(9911): threadid=1: thread exiting uncaught exception (group=0x4114b930) 06-26 21:31:41.372: e/androidruntime(9911): fatal exception: main 06-26 21:31:41.372: e/androidruntime(9911): java.lang.runtimeexception: unable instantiate application com.counterpath.sdkdemo.audiocall.phoneapp: java.lang.classnotfoundexception: didn't find class "com.counterpath.sdkdemo.audiocall.phoneapp" on path: /data/app/com.counterpath.sdkdemo.audiocall-1.apk 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.loadedapk.makeapplication(loadedapk.java:504) 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.activitythread.handlebindapplication(activitythread.java:4364) 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.activitythread.access$1300(activitythread.java:141) 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.activitythread$h.handlemessage(activitythread.java:1294) 06-26 21:31:41.372: e/androidruntime(9911): @ android.os.handler.dispatchmessage(handler.java:99) 06-26 21:31:41.372: e/androidruntime(9911): @ android.os.looper.loop(looper.java:137) 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.activitythread.main(activitythread.java:5039) 06-26 21:31:41.372: e/androidruntime(9911): @ java.lang.reflect.method.invokenative(native method) 06-26 21:31:41.372: e/androidruntime(9911): @ java.lang.reflect.method.invoke(method.java:511) 06-26 21:31:41.372: e/androidruntime(9911): @ com.android.internal.os.zygoteinit$methodandargscaller.run(zygoteinit.java:793) 06-26 21:31:41.372: e/androidruntime(9911): @ com.android.internal.os.zygoteinit.main(zygoteinit.java:560) 06-26 21:31:41.372: e/androidruntime(9911): @ dalvik.system.nativestart.main(native method) 06-26 21:31:41.372: e/androidruntime(9911): caused by: java.lang.classnotfoundexception: didn't find class "com.counterpath.sdkdemo.audiocall.phoneapp" on path: /data/app/com.counterpath.sdkdemo.audiocall-1.apk 06-26 21:31:41.372: e/androidruntime(9911): @ dalvik.system.basedexclassloader.findclass(basedexclassloader.java:65) 06-26 21:31:41.372: e/androidruntime(9911): @ java.lang.classloader.loadclass(classloader.java:501) 06-26 21:31:41.372: e/androidruntime(9911): @ java.lang.classloader.loadclass(classloader.java:461) 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.instrumentation.newapplication(instrumentation.java:968) 06-26 21:31:41.372: e/androidruntime(9911): @ android.app.loadedapk.makeapplication(loadedapk.java:499) 06-26 21:31:41.372: e/androidruntime(9911): ... 11 more
Comments
Post a Comment