Update dependencies and make adjustments based on version migrations

This commit is contained in:
Gergely Hegedus 2021-09-18 13:55:58 +03:00
parent 4147ac7afd
commit 472b7591f5
27 changed files with 120 additions and 97 deletions

View file

@ -10,10 +10,6 @@ java {
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xinline-classes"]
freeCompilerArgs += "-Xinline-classes"
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

View file

@ -1,3 +1,4 @@
package org.fnives.test.showcase.model.content
inline class ContentId(val id: String)
@JvmInline
value class ContentId(val id: String)

View file

@ -1,3 +1,4 @@
package org.fnives.test.showcase.model.content
inline class ImageUrl(val url: String)
@JvmInline
value class ImageUrl(val url: String)

View file

@ -1,3 +1,4 @@
package org.fnives.test.showcase.model.network
inline class BaseUrl(val baseUrl: String)
@JvmInline
value class BaseUrl(val baseUrl: String)