|
|
|
|
@ -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' |
|
|
|
|
|