Skip to content Skip to sidebar Skip to footer

Java.lang.classnotfoundexception: Didn't Find Class With Teamcity Build

After adding android-support-v7-appcompat and google-play-services_lib to the Android project application starts to crash right after start with java.lang.ClassNotFoundException e

Solution 1:

ClassNotFoundException is exactly that. A class that is references cannot be found. When working with third party libraries, you must ensure that their dependancies (if any) are also included in your class path.

Without seeing the actual stacktrace, its difficult to narrow down the problem, but I would check if the dependancies of the third party libraries that I am adding are also included in the class path.

Hope that helps.

Post a Comment for "Java.lang.classnotfoundexception: Didn't Find Class With Teamcity Build"