mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Update libsignal-service-java
- Use new ProfileKey class instead of byte array - Add capabilities (for future support of uuid and groups v2)
This commit is contained in:
parent
31434ac5ec
commit
0dc6b1327e
5 changed files with 57 additions and 23 deletions
|
@ -37,13 +37,16 @@ public class BaseConfig {
|
|||
|
||||
private final static List<Interceptor> interceptors = Collections.singletonList(userAgentInterceptor);
|
||||
|
||||
private final static byte[] zkGroupServerPublicParams = new byte[]{};
|
||||
|
||||
final static SignalServiceConfiguration serviceConfiguration = new SignalServiceConfiguration(
|
||||
new SignalServiceUrl[]{new SignalServiceUrl(URL, TRUST_STORE)},
|
||||
new SignalCdnUrl[]{new SignalCdnUrl(CDN_URL, TRUST_STORE)},
|
||||
new SignalContactDiscoveryUrl[0],
|
||||
new SignalKeyBackupServiceUrl[]{new SignalKeyBackupServiceUrl(SIGNAL_KEY_BACKUP_URL, TRUST_STORE)},
|
||||
new SignalStorageUrl[]{new SignalStorageUrl(STORAGE_URL, TRUST_STORE)},
|
||||
interceptors
|
||||
interceptors,
|
||||
zkGroupServerPublicParams
|
||||
);
|
||||
|
||||
private BaseConfig() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue