Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Commit d72873f

Browse files
committed
Bumps versions and makes project compatible with AS 4.2.1
1 parent 44fdf88 commit d72873f

File tree

4 files changed

+31
-36
lines changed

4 files changed

+31
-36
lines changed

app/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ dependencies {
4545
implementation "androidx.room:room-runtime:$roomVersion"
4646
kapt "androidx.room:room-compiler:$roomVersion"
4747
implementation "androidx.room:room-ktx:$roomVersion"
48-
implementation "androidx.lifecycle:lifecycle-extensions:$archLifecycleVersion"
48+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$archLifecycleVersion"
49+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$archLifecycleVersion"
4950
kapt "androidx.lifecycle:lifecycle-compiler:$archLifecycleVersion"
5051
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$archLifecycleVersion"
5152
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$archLifecycleVersion"

build.gradle

+26-31
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
2-
ext.kotlinVersion = '1.3.31'
3-
ext.navigationVersion = "2.1.0-alpha06"
2+
ext.kotlinVersion = '1.5.10'
3+
ext.navigationVersion = '2.3.5'
44
repositories {
55
google()
6-
jcenter()
6+
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.4.1'
9+
classpath 'com.android.tools.build:gradle:4.2.1'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1111
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
1212

@@ -18,46 +18,41 @@ buildscript {
1818
allprojects {
1919
repositories {
2020
google()
21-
jcenter()
21+
mavenCentral()
2222
}
2323
}
2424

25-
task clean(type: Delete) {
26-
delete rootProject.buildDir
27-
}
28-
2925
// Define versions in a single place
3026
ext {
3127
// Sdk and tools
32-
// Support library and architecture components support minSdk 14 and above.
33-
minSdkVersion = 14
34-
targetSdkVersion = 28
35-
compileSdkVersion = 28
28+
minSdkVersion = 21
29+
targetSdkVersion = 30
30+
compileSdkVersion = 30
3631

3732
// App dependencies
3833
androidXVersion = '1.0.0'
39-
androidXTestCoreVersion = '1.2.0'
40-
androidXTestExtKotlinRunnerVersion = '1.1.1'
41-
androidXTestRulesVersion = '1.2.0-beta01'
42-
androidXAnnotations = '1.0.1'
34+
androidXTestCoreVersion = '1.3.0'
35+
androidXTestExtKotlinRunnerVersion = '1.1.2'
36+
androidXTestRulesVersion = '1.2.0'
37+
androidXAnnotations = '1.2.0'
4338
androidXLegacySupport = '1.0.0'
44-
appCompatVersion = '1.0.2'
45-
archLifecycleVersion = '2.2.0-alpha01'
46-
archTestingVersion = '2.0.0'
39+
appCompatVersion = '1.3.0'
40+
archLifecycleVersion = '2.3.1'
41+
archTestingVersion = '2.1.0'
4742
cardVersion = '1.0.0'
48-
coroutinesVersion = '1.2.1'
43+
coroutinesVersion = '1.5.0'
4944
dexMakerVersion = '2.12.1'
50-
espressoVersion = '3.2.0-beta01'
51-
fragmentVersion = '1.1.0-alpha07'
52-
fragmentKtxVersion = '1.1.0-rc01'
45+
espressoVersion = '3.3.0'
46+
fragmentVersion = '1.3.4'
47+
fragmentKtxVersion = '1.3.4'
5348
hamcrestVersion = '1.3'
54-
junitVersion = '4.12'
55-
materialVersion = '1.0.0'
56-
mockitoVersion = '2.8.9'
57-
recyclerViewVersion = '1.0.0'
58-
robolectricVersion = '4.3.1'
59-
roomVersion = '2.1.0'
49+
junitVersion = '4.13.1'
50+
materialVersion = '1.3.0'
51+
multiDexVersion = '2.0.1'
52+
recyclerViewVersion = '1.2.0'
53+
robolectricVersion = '4.5.1'
54+
roomVersion = '2.3.0'
6055
rulesVersion = '1.0.1'
6156
timberVersion = '4.7.1'
62-
truthVersion = '0.44'
57+
truthVersion = '1.1.2'
6358
}

gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@
1818
# org.gradle.parallel=true
1919
android.enableJetifier=true
2020
android.useAndroidX=true
21-
android.enableUnitTestBinaryResources=true
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Apr 04 11:20:54 PDT 2019
1+
#Mon Jun 14 12:47:31 UTC 2021
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)