File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
109android.useAndroidX =true
1110org.gradle.jvmargs =-Xmx1536m
1211# When configured, Gradle will run in incubating parallel mode.
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
33
4- def libraryVersionName = ' 1.1.0-beta1 '
4+ def libraryVersionName = ' 1.1.0'
55
66android {
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'
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22apply plugin : ' kotlin-android'
3- apply plugin : ' kotlin-android-extensions'
43
54android {
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}
You can’t perform that action at this time.
0 commit comments