1 // Copyright 2015-present 650 Industries. All rights reserved. 2 package host.exp.exponent.kernel 3 4 object KernelConfig { 5 @JvmStatic var IS_TEST = false 6 7 // Used for testing. Don't want the "Fetching JS Bundle" screen to pop up. 8 var FORCE_NO_KERNEL_DEBUG_MODE = false 9 10 // Used for testing. 11 var FORCE_UNVERSIONED_PUBLISHED_EXPERIENCES = false 12 13 // Used for testing. 14 var HIDE_ONBOARDING = false 15 } 16