I add in my project appcompat_v7
but I can't import
:
import android.support.v7.graphics.Palette;
What can I do ?
I see my android-support-v7-appcompat.jar
in this jar
the package android-support-v7.appcompat
is empty.How I can get sub classes
?
Add android-support-v7-palette.jar to your project and add it to build path.
or add the dependency into the app gradle file (latest version)
implementation 'com.android.support:palette-v7:22.2.0'
And if you are using Android X:
implementation 'androidx.palette:palette:1.0.0'