Skip to content

Commit e483b8c

Browse files
committed
[Feature] Update dependencies.
1 parent 6b2cdad commit e483b8c

5 files changed

Lines changed: 15 additions & 13 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:4.2.1'
7+
classpath 'com.android.tools.build:gradle:7.1.3'
88
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
99
}
1010
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Nov 02 23:27:57 PST 2020
1+
#Thu Sep 23 01:27:10 PDT 2021
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip

library/build.gradle

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

33
android {
4-
compileSdkVersion 30
5-
buildToolsVersion '30.0.3'
4+
compileSdkVersion 31
5+
buildToolsVersion '32.0.0'
66
defaultConfig {
77
minSdkVersion 21
8-
targetSdkVersion 30
8+
targetSdkVersion 31
99
versionCode Integer.parseInt(VERSION_CODE)
1010
versionName VERSION_NAME
1111
consumerProguardFiles 'proguard-rules.pro'
@@ -22,7 +22,7 @@ android {
2222
}
2323

2424
dependencies {
25-
implementation 'androidx.appcompat:appcompat:1.3.0'
25+
implementation 'androidx.appcompat:appcompat:1.4.1'
2626
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2727
}
2828

sample/build.gradle

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

33
android {
4-
compileSdkVersion 30
5-
buildToolsVersion '30.0.3'
4+
compileSdkVersion 31
5+
buildToolsVersion '32.0.0'
66
defaultConfig {
77
applicationId 'me.zhanghai.android.fastscroll.sample'
88
minSdkVersion 21
9-
targetSdkVersion 30
9+
targetSdkVersion 31
1010
versionCode Integer.parseInt(VERSION_CODE)
1111
versionName VERSION_NAME
1212
}
@@ -36,8 +36,8 @@ android {
3636
}
3737

3838
dependencies {
39-
implementation 'androidx.appcompat:appcompat:1.3.0'
39+
implementation 'androidx.appcompat:appcompat:1.4.1'
4040
implementation 'androidx.recyclerview:recyclerview:1.2.1'
41-
implementation 'com.google.android.material:material:1.3.0'
41+
implementation 'com.google.android.material:material:1.5.0'
4242
implementation project(':library')
4343
}

sample/src/main/AndroidManifest.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
android:theme="@style/Theme.Sample"
3232
tools:ignore="GoogleAppIndexingWarning">
3333

34-
<activity android:name="me.zhanghai.android.fastscroll.sample.MainActivity">
34+
<activity
35+
android:name="me.zhanghai.android.fastscroll.sample.MainActivity"
36+
android:exported="true">
3537
<intent-filter>
3638
<action android:name="android.intent.action.MAIN" />
3739
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)