version 1.3.1

This commit is contained in:
Diego Beraldin 2024-01-01 12:13:52 +01:00
parent fb12df6222
commit b10357f7d0
6 changed files with 11 additions and 5 deletions

View File

@ -15,8 +15,8 @@ android {
applicationId = "com.github.diegoberaldin.raccoonforlemmy.android"
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 59
versionName = "1.3.0"
versionCode = 60
versionName = "1.3.1"
archivesName.set("RaccoonForLemmy")
}
buildFeatures {

View File

@ -6,7 +6,7 @@ import org.koin.dsl.module
import org.koin.java.KoinJavaComponent.inject
val markwonModule = module {
single<MarkwonProvider> { params ->
single<MarkwonProvider> {
DefaultMarkwonProvider(
context = get(),
)

View File

@ -2,6 +2,7 @@ package com.github.diegoberaldin.raccoonforlemmy.core.notifications
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.SupervisorJob
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.MutableSharedFlow
@ -40,6 +41,7 @@ object DefaultNotificationCenter : NotificationCenter {
}
}
@OptIn(ExperimentalCoroutinesApi::class)
override fun resetCache() {
replayedEvents.resetReplayCache()
}

View File

@ -0,0 +1 @@
- fix: build configuration

View File

@ -0,0 +1 @@
- fix: crash due to screen parameter serialization

View File

@ -6,6 +6,8 @@ plugins {
}
kotlin {
applyDefaultHierarchyTemplate()
androidTarget {
compilations.all {
kotlinOptions {
@ -103,7 +105,7 @@ kotlin {
val iosX64Main by getting
val iosArm64Main by getting
val iosSimulatorArm64Main by getting
val iosMain by creating {
val iosMain by getting {
dependsOn(commonMain)
iosX64Main.dependsOn(this)
iosArm64Main.dependsOn(this)
@ -112,7 +114,7 @@ kotlin {
val iosX64Test by getting
val iosArm64Test by getting
val iosSimulatorArm64Test by getting
val iosTest by creating {
val iosTest by getting {
dependsOn(commonTest)
iosX64Test.dependsOn(this)
iosArm64Test.dependsOn(this)