Figured it out.
You'll have to add the following gradle dependency :
compile 'com.android.support:recyclerview-v7:+'
another issue I had compiling was the compileSdkVersion
. Apparently you'll have to compile it against android-L
Your build.gradle file should look something like this:
apply plugin: 'android'
android {
compileSdkVersion 'android-L'
buildToolsVersion '19.1.0'
[...]
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:recyclerview-v7:+'
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…