java.lang.NoClassDefFoundError: android.support.v7.appcompat.R$styleable

江枫思渺然 提交于 2019-11-26 21:01:08

if you are using eclipse than just import the v7 compact library project into your work space and add it as a library to your project else if you are doing it from terminal than what you can do is put android-support-v7-appcompat library project (which you can find in sdk\extras\android\support\v7\appcompat)in the same directory where is your project and add this line to your project.properties file

android.library.reference.1=../android-support-v7-appcompat

do not forget to add both the jar files v4,v7 to your project as well.

Make sure to do the following (from Support Library Setup):

  1. Right-click the library project folder and select Build Path > Configure Build Path.

  2. In the Order and Export tab, check the .jar files you just added to the build path, so they are available to projects that depend on this library project. For example, the appcompat project requires you to export both the android-support-v4.jar and android-support-v7-appcompat.jar files.

  3. Uncheck Android Dependencies.

AppCompat is a lib with resource. You cannot add the jar, cause this library uses resources. So you need to add a library project.

Follow Adding Support Libraries steps.

user3081695
  1. Right-click the your project folder and select java Build Path >Libraries

  2. whether .jar file of your library project is present or not

  3. if not buld the correct path that contains .jar file

If you are using Android Studio then its quick easier, Please add compile 'com.android.support:cardview-v7:21.+' in dependencies in build.gradle.

dependencies {
       compile 'com.android.support:cardview-v7:21.+'
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!