From 938050a71b74fb3a733d6c87c406cd1a718d2151 Mon Sep 17 00:00:00 2001 From: Michael Flisar Date: Mon, 21 Oct 2024 11:36:05 +0200 Subject: [PATCH] . --- .gitignore | 2 ++ library/core/build.gradle.kts | 2 +- .../kotlin/com/michaelflisar/composechangelog/Changelog.kt | 2 -- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 56cc642..cc85a3b 100644 --- a/.gitignore +++ b/.gitignore @@ -83,3 +83,5 @@ lint/generated/ lint/outputs/ lint/tmp/ # lint/reports/ +/.idea +/.kotlin diff --git a/library/core/build.gradle.kts b/library/core/build.gradle.kts index 76669b4..6eb6781 100644 --- a/library/core/build.gradle.kts +++ b/library/core/build.gradle.kts @@ -36,7 +36,7 @@ val licenseUrl = "$github/blob/main/LICENSE" kotlin { // Java - //jvm() + jvm() // Android androidTarget { diff --git a/library/core/src/androidMain/kotlin/com/michaelflisar/composechangelog/Changelog.kt b/library/core/src/androidMain/kotlin/com/michaelflisar/composechangelog/Changelog.kt index 5cae5b7..0a5ae97 100644 --- a/library/core/src/androidMain/kotlin/com/michaelflisar/composechangelog/Changelog.kt +++ b/library/core/src/androidMain/kotlin/com/michaelflisar/composechangelog/Changelog.kt @@ -86,7 +86,6 @@ object Changelog { showChangelog = ChangelogUtil.shouldShowChangelogOnStart(context, storage) } } - println("showChangelog = $showChangelog") showChangelog ?.takeIf { it.shouldShow } ?.let { data -> @@ -187,7 +186,6 @@ object ChangelogDefaults { "new" -> 0 "bug", "bugfix" -> 2 - else -> 1 } }