We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c78d31f commit 7a68360Copy full SHA for 7a68360
app/build.gradle
@@ -1,8 +1,7 @@
1
apply plugin: 'com.android.application'
2
3
android {
4
- implementationSdkVersion 26
5
- buildToolsVersion '26.0.2'
+ compileSdkVersion 26
6
7
defaultConfig {
8
applicationId "com.chad.baserecyclerviewadapterhelper"
library/build.gradle
@@ -1,7 +1,6 @@
apply plugin: 'com.android.library'
compileSdkVersion 26
- buildToolsVersion "26.0.2"
minSdkVersion 11
@@ -48,6 +47,6 @@ artifacts {
48
47
49
dependencies {
50
51
- compile fileTree(include: ['*.jar'], dir: 'libs')
52
- provided 'com.android.support:recyclerview-v7:26.1.0'
+ implementation fileTree(include: ['*.jar'], dir: 'libs')
+ compileOnly 'com.android.support:recyclerview-v7:26.1.0'
53
}
0 commit comments