Updated dependencies
This commit is contained in:
parent
aa3b70d68c
commit
44291bcc39
3 changed files with 14 additions and 6 deletions
|
@ -46,9 +46,9 @@ dependencies {
|
|||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}"
|
||||
|
||||
implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}"
|
||||
implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
|
||||
implementation 'androidx.appcompat:appcompat:1.0.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.3'
|
||||
implementation 'com.google.android.material:material:1.0.0-rc01'
|
||||
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
|
||||
implementation 'com.google.android.material:material:1.0.0'
|
||||
androidTestImplementation 'androidx.test:runner:1.1.0'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
java
|
||||
kotlin("jvm") version "1.2.61"
|
||||
|
@ -8,7 +10,7 @@ repositories {
|
|||
google()
|
||||
}
|
||||
|
||||
val android_gradle_plugin_version = "3.2.0"
|
||||
val android_gradle_plugin_version = "3.1.3"
|
||||
val kotlin_version = "1.2.61"
|
||||
|
||||
dependencies {
|
||||
|
@ -16,3 +18,9 @@ dependencies {
|
|||
implementation("com.android.tools.build:gradle-api:$android_gradle_plugin_version")
|
||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile> {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
|
@ -11,7 +11,7 @@ object DependencyVersions {
|
|||
}
|
||||
|
||||
object Android {
|
||||
const val SupportLibrary = "27.1.1"
|
||||
const val SupportLibrary = "28.0.0"
|
||||
const val Gradle = "3.2.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue