I add appcompat_v7 to the project but cannot import :
appcompat_v7
import
import android.support.v7.graphics.Palette;
What can I do?
I see my android-support-v7-appcompat.jar in this jar package android-support-v7.appcompat empty. How can i get sub classes ?
android-support-v7-appcompat.jar
jar
android-support-v7.appcompat
classes
Add android-support-v7-palette.jar to the project and add it to the build path.
use this in your gradle
compile 'com.android.support:palette-v7:22.2.0'
make sure you use the version in compileSdkVersion
For example, for:
compileSdkVersion 22
you are using:
compile 'com.android.support:palette-v7:22.x.x'