-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update deps #307
chore: update deps #307
Conversation
86ac56f
to
f61eff6
Compare
app/build.gradle
Outdated
"-Xuse-experimental=kotlinx.coroutines.FlowPreview", | ||
"-Xuse-experimental=kotlin.ExperimentalStdlibApi", | ||
"-opt-in=kotlin.RequiresOptIn", | ||
"-opt-in=kotlin.time.ExperimentalTime", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"-opt-in=kotlin.time.ExperimentalTime", |
app/build.gradle
Outdated
] | ||
} | ||
composeOptions { | ||
kotlinCompilerExtensionVersion libs.versions.compose.core.get() | ||
kotlinCompilerExtensionVersion = "1.5.11" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it ok? Because kntlin is in something loke 1.9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes i updated to 1.5.13 but its the latest release of the kotlinCompilerExtensions
@@ -143,7 +142,7 @@ dependencies { | |||
implementation libs.bundles.kotlin | |||
implementation libs.bundles.networking.core | |||
|
|||
kapt libs.androidX.room.compiler | |||
ksp libs.androidX.room.compiler |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤙
|
||
@SuppressWarnings("MagicNumber") | ||
private val HTTP_READ_TIMEOUT = Duration.seconds(20) | ||
private val HTTP_READ_TIMEOUT = 20.toDuration(DurationUnit.SECONDS) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't you use 20.seconds?
See https://developer.android.com/about/versions/12/backup-restore#xml-changes | ||
for details. | ||
--> | ||
<data-extraction-rules> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes since allow backup was deprecated we need this file
build.gradle
Outdated
@@ -19,21 +19,27 @@ buildscript { | |||
} | |||
} | |||
|
|||
plugins{ | |||
id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cannot we get it from the version file?
Description:
Updated template version to the latest added signout feature