Skip to content

Commit 0b8e5e4

Browse files
committed
[Feature] Update dependencies.
1 parent d3cf515 commit 0b8e5e4

6 files changed

Lines changed: 15 additions & 14 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:7.1.3'
7+
classpath 'com.android.tools.build:gradle:7.3.0'
88
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
99
}
1010
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-7.2-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip

library/build.gradle

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

33
android {
4-
compileSdkVersion 31
5-
buildToolsVersion '32.0.0'
4+
namespace 'me.zhanghai.android.fastscroll'
5+
compileSdkVersion 33
6+
buildToolsVersion '33.0.0'
67
defaultConfig {
78
minSdkVersion 21
8-
targetSdkVersion 31
9+
targetSdkVersion 33
910
versionCode Integer.parseInt(VERSION_CODE)
1011
versionName VERSION_NAME
1112
consumerProguardFiles 'proguard-rules.pro'
@@ -22,7 +23,7 @@ android {
2223
}
2324

2425
dependencies {
25-
implementation 'androidx.appcompat:appcompat:1.4.1'
26+
implementation 'androidx.appcompat:appcompat:1.5.1'
2627
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2728
}
2829

library/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<manifest package="me.zhanghai.android.fastscroll" />
19+
<manifest />

sample/build.gradle

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

33
android {
4-
compileSdkVersion 31
5-
buildToolsVersion '32.0.0'
4+
namespace 'me.zhanghai.android.fastscroll.sample'
5+
compileSdkVersion 33
6+
buildToolsVersion '33.0.0'
67
defaultConfig {
78
applicationId 'me.zhanghai.android.fastscroll.sample'
89
minSdkVersion 21
9-
targetSdkVersion 31
10+
targetSdkVersion 33
1011
versionCode Integer.parseInt(VERSION_CODE)
1112
versionName VERSION_NAME
1213
}
@@ -36,8 +37,8 @@ android {
3637
}
3738

3839
dependencies {
39-
implementation 'androidx.appcompat:appcompat:1.4.1'
40+
implementation 'androidx.appcompat:appcompat:1.5.1'
4041
implementation 'androidx.recyclerview:recyclerview:1.2.1'
41-
implementation 'com.google.android.material:material:1.5.0'
42+
implementation 'com.google.android.material:material:1.6.1'
4243
implementation project(':library')
4344
}

sample/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818

1919
<manifest
2020
xmlns:android="http://schemas.android.com/apk/res/android"
21-
xmlns:tools="http://schemas.android.com/tools"
22-
package="me.zhanghai.android.fastscroll.sample">
21+
xmlns:tools="http://schemas.android.com/tools">
2322

2423
<application
2524
android:allowBackup="true"

0 commit comments

Comments
 (0)