From 36590bea81dd4f21b3c2f66a5a72432b680f5a9a Mon Sep 17 00:00:00 2001 From: SessionHero01 <180888785+SessionHero01@users.noreply.github.com> Date: Wed, 12 Mar 2025 11:09:05 +1100 Subject: [PATCH] Fix website variant build (#1015) --- .drone.jsonnet | 3 ++- .../securesms/notifications/NoOpPushModule.kt | 2 +- .../securesms/notifications/NoOpTokenFetcher.kt | 8 +++++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 823d9e35b5..c319dc7fa6 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -83,7 +83,8 @@ local ci_dep_mirror(want_mirror) = (if want_mirror then ' -DLOCAL_MIRROR=https:/ 'apt-get update --allow-releaseinfo-change', 'apt-get install -y ninja-build openjdk-17-jdk', 'update-java-alternatives -s java-1.17.0-openjdk-amd64', - './gradlew assemblePlayDebug', + './gradlew assemblePlayDebug assembleWebsiteDebug', + './gradlew -Phuawei=1 assembleHuaweiDebug', './scripts/drone-static-upload.sh' ], } diff --git a/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpPushModule.kt b/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpPushModule.kt index 59873c82be..f66df30643 100644 --- a/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpPushModule.kt +++ b/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpPushModule.kt @@ -5,7 +5,7 @@ import dagger.Module import dagger.Provides import dagger.hilt.InstallIn import dagger.hilt.components.SingletonComponent -import javax.inject.Singleton +import org.session.libsession.messaging.notifications.TokenFetcher @Module @InstallIn(SingletonComponent::class) diff --git a/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpTokenFetcher.kt b/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpTokenFetcher.kt index 875518354b..f470807882 100644 --- a/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpTokenFetcher.kt +++ b/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpTokenFetcher.kt @@ -1,9 +1,15 @@ package org.thoughtcrime.securesms.notifications +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.StateFlow +import org.session.libsession.messaging.notifications.TokenFetcher import javax.inject.Inject import javax.inject.Singleton @Singleton class NoOpTokenFetcher @Inject constructor() : TokenFetcher { - override suspend fun fetch(): String? = null + override val token: StateFlow = MutableStateFlow(null) + + override fun onNewToken(token: String) {} + override suspend fun resetToken() {} }