Bump to libsignal v0.94.4

This commit is contained in:
andrew-signal
2026-06-03 15:06:31 -03:00
committed by Alex Hart
parent 3ad446c6c9
commit c020bfeb7a
4 changed files with 11 additions and 25 deletions
@@ -328,10 +328,6 @@ public class ApplicationDependencyProvider implements AppDependencies.Provider {
Network network = new Network(BuildConfig.LIBSIGNAL_NET_ENV, StandardUserAgentInterceptor.USER_AGENT, RemoteConfig.getLibsignalConfigs(), Network.BuildVariant.PRODUCTION);
LibSignalNetworkExtensions.applyConfiguration(network, config);
if (RemoteConfig.enableReflectorsTest() && !config.getSignalProxy().isPresent() && !config.getSystemHttpProxy().isPresent()) {
network.INTERNAL_TESTING_setReflectorProxy(true);
}
return network;
}
@@ -631,16 +631,6 @@ object RemoteConfig {
}
}
/** Internal-only gate for dogfooding libsignal reflector proxy mode. */
@JvmStatic
@get:JvmName("enableReflectorsTest")
val enableReflectorsTest: Boolean by remoteBoolean(
key = "android.enableReflectorsTest",
defaultValue = false,
hotSwappable = true,
active = Environment.isInternal()
)
/** The raw client expiration JSON string. */
@JvmStatic
@get:JvmName("clientExpiration")