1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/FeatureFlags.kt

39 lines
897 B
Kotlin

package org.mozilla.fenix
/**
* A single source for setting feature flags that are mostly based on build type.
*/
object FeatureFlags {
/**
* Pull-to-refresh allows you to pull the web content down far enough to have the page to
* reload.
*/
const val pullToRefreshEnabled = false
/**
* Enables tip feature
*/
val tips = Config.channel.isDebug
/**
* Allows edit of saved logins.
*/
val loginsEdit = Config.channel.isNightlyOrDebug
/**
* Enable tab sync feature
*/
val syncedTabs = Config.channel.isNightlyOrDebug
/**
* Enables new tab tray pref
*/
val tabTray = Config.channel.isNightlyOrDebug
/**
* Allows search widget CFR to be displayed.
* This is a placeholder for the experimentation framework determining cohorts.
*/
val searchWidgetCFR = Config.channel.isDebug
}