mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-09 04:38:42 +01:00
version 1.3.1
This commit is contained in:
parent
fb12df6222
commit
b10357f7d0
@ -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 {
|
||||
|
@ -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(),
|
||||
)
|
||||
|
@ -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()
|
||||
}
|
||||
|
1
fastlane/metadata/android/en-US/changelogs/59.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/59.txt
Normal file
@ -0,0 +1 @@
|
||||
- fix: build configuration
|
1
fastlane/metadata/android/en-US/changelogs/60.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/60.txt
Normal file
@ -0,0 +1 @@
|
||||
- fix: crash due to screen parameter serialization
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user