Pre-Registration Restoration from Local Unified Backup.

This commit is contained in:
Alex Hart
2026-02-20 11:14:58 -04:00
committed by Cody Henthorne
parent 7e605fb6de
commit c9dd332abd
47 changed files with 2238 additions and 869 deletions

View File

@@ -18,6 +18,11 @@ object Environment {
fun supportsGooglePlayBilling(): Boolean {
return BuildConfig.APPLICATION_ID == GOOGLE_PLAY_BILLING_APPLICATION_ID
}
@JvmStatic
fun isNewFormatSupportedForLocalBackup(): Boolean {
return BuildConfig.DEBUG || IS_NIGHTLY
}
}
object Donations {

View File

@@ -1237,17 +1237,6 @@ object RemoteConfig {
hotSwappable = true
)
/**
* Whether or not the new UX for unified local backups is enabled
*/
@JvmStatic
@get:JvmName("unifiedLocalBackups")
val unifiedLocalBackups: Boolean by remoteBoolean(
key = "android.unifiedLocalBackups",
defaultValue = false,
hotSwappable = true
)
/**
* Whether to receive and display group member labels.
*/