Skip to content

Commit 722a8ff

Browse files
authored
Upgrade dependencies (#12)
1 parent e492c87 commit 722a8ff

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
android.enableJetifier=true
109
android.useAndroidX=true
1110
org.gradle.jvmargs=-Xmx1536m
1211
# When configured, Gradle will run in incubating parallel mode.

indicator-fast-scroll/build.gradle

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

4-
def libraryVersionName = '1.1.0-beta1'
4+
def libraryVersionName = '1.1.0'
55

66
android {
7-
compileSdkVersion 28
7+
compileSdkVersion 29
88

99
defaultConfig {
1010
minSdkVersion 21
11-
targetSdkVersion 28
11+
targetSdkVersion 29
1212
versionCode 1
1313
versionName libraryVersionName
1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -18,7 +18,9 @@ android {
1818

1919
// TODO replace with https://issuetracker.google.com/issues/72050365 once released.
2020
libraryVariants.all {
21-
it.generateBuildConfig.enabled = false
21+
it.generateBuildConfigProvider.configure { task ->
22+
task.enabled = false
23+
}
2224
}
2325
}
2426

@@ -30,7 +32,7 @@ dependencies {
3032
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
3133
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
3234

33-
implementation 'androidx.core:core-ktx:1.0.1'
35+
implementation 'androidx.core:core-ktx:1.0.2'
3436

3537
testImplementation "androidx.test.ext:junit:1.1.1"
3638
testImplementation 'androidx.test:rules:1.2.0'

sample/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
3-
apply plugin: 'kotlin-android-extensions'
43

54
android {
6-
compileSdkVersion 28
5+
compileSdkVersion 29
76
defaultConfig {
87
applicationId "com.reddit.indicatorfastscroll.sample"
98
minSdkVersion 21
10-
targetSdkVersion 28
9+
targetSdkVersion 29
1110
versionCode 1
1211
versionName "1.0"
1312
}
@@ -22,7 +21,7 @@ dependencies {
2221
implementation 'androidx.recyclerview:recyclerview:1.0.0'
2322
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2423

25-
implementation 'androidx.core:core-ktx:1.0.1'
24+
implementation 'androidx.core:core-ktx:1.0.2'
2625

2726
implementation 'com.thedeanda:lorem:2.1'
2827
}

0 commit comments

Comments
 (0)