Add FeatureFlags to disable features in release builds

This commit is contained in:
MM20
2026-03-14 13:17:36 +01:00
parent 910a64480a
commit 0b22f52823
3 changed files with 31 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
package de.mm20.launcher2
import de.mm20.launcher2.base.BuildConfig
object FeatureFlags {
val feed = BuildConfig.BUILD_TYPE != "release"
val smartspacerIntegration = BuildConfig.BUILD_TYPE != "release"
}