mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 16:49:40 +01:00
Fix window insets for pixel 10 devices.
This commit is contained in:
committed by
Alex Hart
parent
3e07834c20
commit
585fb3eea8
@@ -575,13 +575,12 @@ object RemoteConfig {
|
||||
/** Whether or not the user is an 'internal' one, which activates certain developer tools. */
|
||||
@JvmStatic
|
||||
@get:JvmName("internalUser")
|
||||
val internalUser: Boolean = true
|
||||
// val internalUser: Boolean by remoteValue(
|
||||
// key = "android.internalUser",
|
||||
// hotSwappable = true
|
||||
// ) { value ->
|
||||
// value.asBoolean(false) || Environment.IS_NIGHTLY || Environment.IS_STAGING
|
||||
// }
|
||||
val internalUser: Boolean by remoteValue(
|
||||
key = "android.internalUser",
|
||||
hotSwappable = true
|
||||
) { value ->
|
||||
value.asBoolean(false) || Environment.IS_NIGHTLY || Environment.IS_STAGING
|
||||
}
|
||||
|
||||
/** The raw client expiration JSON string. */
|
||||
@JvmStatic
|
||||
@@ -1132,11 +1131,11 @@ object RemoteConfig {
|
||||
)
|
||||
|
||||
/** Whether to allow different WindowSizeClasses to be used to determine screen layout */
|
||||
val largeScreenUi: Boolean = true /*by remoteBoolean(
|
||||
val largeScreenUi: Boolean by remoteBoolean(
|
||||
key = "android.largeScreenUI",
|
||||
hotSwappable = false,
|
||||
defaultValue = false
|
||||
)*/
|
||||
)
|
||||
|
||||
@JvmStatic
|
||||
@get:JvmName("useMessageSendRestFallback")
|
||||
|
||||
Reference in New Issue
Block a user