Skip to content

Commit 5aef81a

Browse files
committed
[Feature] Update dependencies.
1 parent 922f435 commit 5aef81a

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

library/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ apply plugin: 'com.android.library'
22

33
android {
44
namespace 'me.zhanghai.android.fastscroll'
5-
compileSdkVersion 33
6-
buildToolsVersion '33.0.1'
5+
compileSdk 34
6+
buildToolsVersion = '34.0.0'
77
defaultConfig {
8-
minSdkVersion 21
9-
targetSdkVersion 33
8+
minSdk 21
9+
targetSdk 34
1010
versionCode Integer.parseInt(VERSION_CODE)
1111
versionName VERSION_NAME
1212
consumerProguardFiles 'proguard-rules.pro'
@@ -23,8 +23,8 @@ android {
2323
}
2424

2525
dependencies {
26-
implementation 'androidx.appcompat:appcompat:1.6.0'
27-
implementation 'androidx.recyclerview:recyclerview:1.2.1'
26+
implementation 'androidx.appcompat:appcompat:1.6.1'
27+
implementation 'androidx.recyclerview:recyclerview:1.3.1'
2828
}
2929

3030
apply plugin: 'com.vanniktech.maven.publish'

sample/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
22

33
android {
44
namespace 'me.zhanghai.android.fastscroll.sample'
5-
compileSdkVersion 33
6-
buildToolsVersion '33.0.1'
5+
compileSdk 34
6+
buildToolsVersion = '34.0.0'
77
defaultConfig {
88
applicationId 'me.zhanghai.android.fastscroll.sample'
9-
minSdkVersion 21
10-
targetSdkVersion 33
9+
minSdk 21
10+
targetSdk 34
1111
versionCode Integer.parseInt(VERSION_CODE)
1212
versionName VERSION_NAME
1313
}
@@ -37,8 +37,8 @@ android {
3737
}
3838

3939
dependencies {
40-
implementation 'androidx.appcompat:appcompat:1.6.0'
41-
implementation 'androidx.recyclerview:recyclerview:1.2.1'
42-
implementation 'com.google.android.material:material:1.7.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
41+
implementation 'androidx.recyclerview:recyclerview:1.3.1'
42+
implementation 'com.google.android.material:material:1.9.0'
4343
implementation project(':library')
4444
}

0 commit comments

Comments
 (0)