Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/java/dev/dimension/flare/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import dev.dimension.flare.di.composeUiModule
import io.ktor.client.HttpClient
import org.koin.android.ext.koin.androidContext
import org.koin.core.context.startKoin

import nostr.keys.androidContext
class App :
Application(),
SingletonImageLoader.Factory {
Expand Down
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ navigation3 = "1.0.0-alpha11"
zoomable = "0.18.0"
bouncycastle = "1.82"
cupertino = "2.3.1"
nostr-sdk-jvm = "0.43.0"


[libraries]
Expand Down
1 change: 1 addition & 0 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ kotlin {
implementation(projects.shared.api)
implementation(libs.ktor.client.resources)
implementation("dev.whyoleg.cryptography:cryptography-provider-optimal:0.5.0")
implementation('org.rust-nostr', name: 'nostr-sdk-jvm', version: '0.43.0')
}
}
val commonTest by getting {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import kotlinx.coroutines.flow.filterNotNull
import kotlinx.coroutines.withContext
import kotlin.coroutines.CoroutineContext
import kotlin.coroutines.EmptyCoroutineContext
import nostr.keys.PagingPlaceholderContentType


/**
* The class responsible for accessing the data from a [Flow] of [PagingData].
Expand Down