Updated a whole bunch of dependencies, nixed the support library
This commit is contained in:
parent
792480fe65
commit
fb7eb0197c
6 changed files with 12 additions and 8 deletions
|
@ -45,7 +45,8 @@ dependencies {
|
|||
testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}"
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}"
|
||||
|
||||
implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}"
|
||||
// implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}"
|
||||
implementation 'com.google.android.material:material:1.0.0-rc01'
|
||||
implementation 'androidx.appcompat:appcompat:1.0.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.3'
|
||||
implementation 'com.google.android.material:material:1.0.0'
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
org.gradle.configureondemand=false
|
||||
org.gradle.configureondemand=false
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<include layout="@layout/content_main" />
|
||||
|
||||
<android.support.design.widget.FloatingActionButton
|
||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
|
@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|||
|
||||
plugins {
|
||||
java
|
||||
kotlin("jvm") version "1.2.61"
|
||||
kotlin("jvm") version "1.3.0"
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
@ -11,7 +11,7 @@ repositories {
|
|||
}
|
||||
|
||||
val android_gradle_plugin_version = "3.2.0"
|
||||
val kotlin_version = "1.2.61"
|
||||
val kotlin_version = "1.3.0"
|
||||
|
||||
dependencies {
|
||||
implementation("com.android.tools.build:gradle:$android_gradle_plugin_version")
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package com.anthonycicchetti.financetracker
|
||||
|
||||
object DependencyVersions {
|
||||
const val Kotlin = "1.2.70"
|
||||
const val Kotlin = "1.3.0"
|
||||
const val Jupiter = "5.2.0"
|
||||
|
||||
const val Jackson = "2.9.6"
|
||||
const val Jackson = "2.9.7"
|
||||
|
||||
object Server {
|
||||
const val Capsule = "1.0.2"
|
||||
|
|
|
@ -17,6 +17,7 @@ repositories {
|
|||
|
||||
dependencies {
|
||||
api("com.fasterxml.jackson.module:jackson-module-kotlin:${DependencyVersions.Jackson}")
|
||||
api("org.jetbrains.kotlin:kotlin-reflect:${DependencyVersions.Kotlin}")
|
||||
|
||||
testImplementation("org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}")
|
||||
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}")
|
||||
|
@ -30,4 +31,4 @@ tasks.withType<KotlinCompile> {
|
|||
|
||||
tasks.named<Test>("test"){
|
||||
useJUnitPlatform()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue