From 353452d9b24e70a4c7d4915eaf4c287b55c903e2 Mon Sep 17 00:00:00 2001 From: Uwe Trottmann Date: Fri, 1 Dec 2023 10:34:52 +0100 Subject: [PATCH] CloudEndpointUtils: ignore warnings. --- .../battlelancer/seriesguide/backend/CloudEndpointUtils.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/battlelancer/seriesguide/backend/CloudEndpointUtils.kt b/app/src/main/java/com/battlelancer/seriesguide/backend/CloudEndpointUtils.kt index 9447e840c4..6a470d32ab 100644 --- a/app/src/main/java/com/battlelancer/seriesguide/backend/CloudEndpointUtils.kt +++ b/app/src/main/java/com/battlelancer/seriesguide/backend/CloudEndpointUtils.kt @@ -25,10 +25,10 @@ object CloudEndpointUtils { /** * Change this to 'true' if you're running your backend locally using the DevAppServer. */ - @Suppress("SimplifyBooleanWithConstants") + @Suppress("SimplifyBooleanWithConstants", "KotlinConstantConditions") private val USE_LOCAL_VERSION = false && BuildConfig.DEBUG - @Suppress("SimplifyBooleanWithConstants") + @Suppress("SimplifyBooleanWithConstants", "KotlinConstantConditions") private val USE_STAGING_VERSION = false && BuildConfig.DEBUG private const val ROOT_URL_STAGING = "https://staging-dot-optical-hexagon-364.appspot.com"