Skip to content

Commit 7803918

Browse files
committed
Updates versions
Change-Id: I44d340b59776a75703383bb71ed302573ad8989d
1 parent a827bfa commit 7803918

File tree

2 files changed

+23
-15
lines changed

2 files changed

+23
-15
lines changed

app/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ android {
8080
enabled = true
8181
enabledForTests = true
8282
}
83+
84+
compileOptions {
85+
sourceCompatibility = 1.8
86+
targetCompatibility = 1.8
87+
}
88+
89+
kotlinOptions {
90+
jvmTarget = "1.8"
91+
}
8392
}
8493

8594
/*
@@ -106,7 +115,6 @@ dependencies {
106115
kapt "androidx.room:room-compiler:$roomVersion"
107116
implementation "androidx.room:room-ktx:$roomVersion"
108117
implementation "androidx.lifecycle:lifecycle-extensions:$archLifecycleVersion"
109-
kapt "androidx.lifecycle:lifecycle-compiler:$archLifecycleVersion"
110118
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$archLifecycleVersion"
111119
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$archLifecycleVersion"
112120
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"

build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
2-
ext.kotlinVersion = '1.3.50'
3-
ext.navigationVersion = "2.1.0-alpha06"
2+
ext.kotlinVersion = '1.3.61'
3+
ext.navigationVersion = '2.2.0-rc02'
44
ext.ktlintVersion = '0.33.0'
55
repositories {
66
google()
@@ -47,26 +47,26 @@ ext {
4747
androidXVersion = '1.0.0'
4848
androidXTestCoreVersion = '1.2.0'
4949
androidXTestExtKotlinRunnerVersion = '1.1.1'
50-
androidXTestRulesVersion = '1.2.0-beta01'
51-
androidXAnnotations = '1.0.1'
50+
androidXTestRulesVersion = '1.2.0'
51+
androidXAnnotations = '1.1.0'
5252
androidXLegacySupport = '1.0.0'
53-
appCompatVersion = '1.0.2'
54-
archLifecycleVersion = '2.2.0-alpha01'
55-
archTestingVersion = '2.0.0'
53+
appCompatVersion = '1.1.0'
54+
archLifecycleVersion = '2.2.0-rc02'
55+
archTestingVersion = '2.1.0'
5656
cardVersion = '1.0.0'
5757
coroutinesVersion = '1.2.1'
5858
dexMakerVersion = '2.12.1'
59-
espressoVersion = '3.2.0-beta01'
60-
fragmentVersion = '1.1.0-alpha07'
59+
espressoVersion = '3.2.0'
60+
fragmentVersion = '1.2.0-rc02'
6161
fragmentKtxVersion = '1.1.0-rc01'
6262
hamcrestVersion = '1.3'
6363
junitVersion = '4.12'
6464
materialVersion = '1.0.0'
65-
mockitoVersion = '2.8.9'
66-
recyclerViewVersion = '1.0.0'
67-
robolectricVersion = '4.3-beta-1'
68-
roomVersion = '2.1.0'
65+
mockitoVersion = '2.19.0'
66+
recyclerViewVersion = '1.1.0'
67+
robolectricVersion = '4.3.1'
68+
roomVersion = '2.2.2'
6969
rulesVersion = '1.0.1'
7070
timberVersion = '4.7.1'
71-
truthVersion = '0.44'
71+
truthVersion = '1.0'
7272
}

0 commit comments

Comments
 (0)