V7 support banner update throws class exception not found exception

I am using Eclipse and I am trying to update my v7 jar support. I have appcompat v7 as a project in my workspace that links to other projects. I tried to use the v7 type (instead of the old deprecated v4 type) which was not resolved when trying to import it. Then I updated my v7 jar in the appcompat libs project folder, which fixed the unresolved import issue, but when I try to run the project I get:

java.lang.NoClassDefFoundError: android.support.v7.app.AppCompatDelegateImplV14

      

This exception is thrown on the line super.onCreate();

.

Any idea why and how to solve it?

+3


source to share


1 answer


Make sure there is no library in any of your projects android-support-v4.jar

. Change them to android-support-v13.jar

, whatever. This fixed the problem for me.



0


source







All Articles