diff --git a/app/build.gradle b/app/build.gradle index 82fe1986..7a186bfe 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,6 +21,10 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } + kotlinOptions { + jvmTarget = JavaVersion.VERSION_1_8 + } + lintOptions { disable 'MissingTranslation' } @@ -87,14 +91,14 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) // Kotlin - implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1' implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1" implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" // Android implementation 'androidx.appcompat:appcompat:1.0.2' - implementation 'androidx.core:core-ktx:1.2.0-alpha02' + implementation 'androidx.core:core-ktx:1.2.0-alpha03' implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0' @@ -127,7 +131,7 @@ dependencies { implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' // CSV Parser: https://mvnrepository.com/artifact/org.apache.commons/commons-csv - implementation 'org.apache.commons:commons-csv:1.6' + implementation 'org.apache.commons:commons-csv:1.7' // Instrumented Tests androidTestImplementation 'androidx.test:core:1.2.0' diff --git a/build.gradle b/build.gradle index 7d7aae74..dfd9dbc9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.30' + ext.kotlin_version = '1.3.41' repositories { google() jcenter()