Skip to content

Commit d93cfdb

Browse files
committed
Update dependencies and recyclerview to 1.1.0
* recyclerviewVersion to 1.1.0
1 parent a668ca9 commit d93cfdb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
*/
1616

1717
buildscript {
18-
ext.kotlinVersion = '1.3.61'
18+
ext.kotlinVersion = '1.4.10'
1919
ext.dokkaVersion = '0.9.17'
20-
ext.recyclerviewVersion = '1.0.0'
20+
ext.recyclerviewVersion = '1.1.0'
2121
ext.annotationVersion = '1.1.0'
2222
ext.appcompatVersion = '1.0.2'
2323
ext.buildConfig = [
2424
'versionCode': 420,
2525
'versionName': "4.2.0",
26-
'compileSdkVersion': 29,
26+
'compileSdkVersion': 30,
2727
'minSdkVersion': 14,
28-
'targetSdkVersion': 28
28+
'targetSdkVersion': 29
2929
]
3030

3131
repositories {
3232
google()
3333
jcenter()
3434
}
3535
dependencies {
36-
classpath 'com.android.tools.build:gradle:3.5.3'
36+
classpath 'com.android.tools.build:gradle:4.1.1'
3737
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
3838
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokkaVersion}"
3939
}

library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ android {
5252
}
5353

5454
dependencies {
55-
testImplementation 'junit:junit:4.12'
55+
testImplementation 'junit:junit:4.13'
5656
testImplementation "org.robolectric:robolectric:4.3.1"
5757
testImplementation "org.mockito:mockito-inline:2.18.0"
5858
testImplementation "androidx.recyclerview:recyclerview:$recyclerviewVersion"

sample/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ android {
5151
dependencies {
5252
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
5353
implementation project(':library')
54-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
55-
androidTestImplementation 'androidx.test:rules:1.2.0'
54+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
55+
androidTestImplementation 'androidx.test:rules:1.3.0'
5656
androidTestImplementation "androidx.annotation:annotation:$annotationVersion"
5757
androidTestImplementation "com.google.truth:truth:1.0"
5858
implementation "androidx.appcompat:appcompat:$appcompatVersion"
5959
implementation "androidx.recyclerview:recyclerview:$recyclerviewVersion"
60-
implementation 'com.google.code.gson:gson:2.8.5'
60+
implementation 'com.google.code.gson:gson:2.8.6'
6161
}

0 commit comments

Comments
 (0)