Skip to content

Commit

Permalink
Updates versions
Browse files Browse the repository at this point in the history
Change-Id: I44d340b59776a75703383bb71ed302573ad8989d
  • Loading branch information
JoseAlcerreca committed Nov 29, 2019
1 parent a827bfa commit 7803918
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 15 deletions.
10 changes: 9 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,15 @@ android {
enabled = true
enabledForTests = true
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

kotlinOptions {
jvmTarget = "1.8"
}
}

/*
Expand All @@ -106,7 +115,6 @@ dependencies {
kapt "androidx.room:room-compiler:$roomVersion"
implementation "androidx.room:room-ktx:$roomVersion"
implementation "androidx.lifecycle:lifecycle-extensions:$archLifecycleVersion"
kapt "androidx.lifecycle:lifecycle-compiler:$archLifecycleVersion"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$archLifecycleVersion"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$archLifecycleVersion"
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
Expand Down
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext.kotlinVersion = '1.3.50'
ext.navigationVersion = "2.1.0-alpha06"
ext.kotlinVersion = '1.3.61'
ext.navigationVersion = '2.2.0-rc02'
ext.ktlintVersion = '0.33.0'
repositories {
google()
Expand Down Expand Up @@ -47,26 +47,26 @@ ext {
androidXVersion = '1.0.0'
androidXTestCoreVersion = '1.2.0'
androidXTestExtKotlinRunnerVersion = '1.1.1'
androidXTestRulesVersion = '1.2.0-beta01'
androidXAnnotations = '1.0.1'
androidXTestRulesVersion = '1.2.0'
androidXAnnotations = '1.1.0'
androidXLegacySupport = '1.0.0'
appCompatVersion = '1.0.2'
archLifecycleVersion = '2.2.0-alpha01'
archTestingVersion = '2.0.0'
appCompatVersion = '1.1.0'
archLifecycleVersion = '2.2.0-rc02'
archTestingVersion = '2.1.0'
cardVersion = '1.0.0'
coroutinesVersion = '1.2.1'
dexMakerVersion = '2.12.1'
espressoVersion = '3.2.0-beta01'
fragmentVersion = '1.1.0-alpha07'
espressoVersion = '3.2.0'
fragmentVersion = '1.2.0-rc02'
fragmentKtxVersion = '1.1.0-rc01'
hamcrestVersion = '1.3'
junitVersion = '4.12'
materialVersion = '1.0.0'
mockitoVersion = '2.8.9'
recyclerViewVersion = '1.0.0'
robolectricVersion = '4.3-beta-1'
roomVersion = '2.1.0'
mockitoVersion = '2.19.0'
recyclerViewVersion = '1.1.0'
robolectricVersion = '4.3.1'
roomVersion = '2.2.2'
rulesVersion = '1.0.1'
timberVersion = '4.7.1'
truthVersion = '0.44'
truthVersion = '1.0'
}

0 comments on commit 7803918

Please sign in to comment.