mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-26 14:09:58 +00:00
Write capabilities to service.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package org.thoughtcrime.securesms;
|
||||
|
||||
import org.whispersystems.signalservice.api.profiles.SignalServiceProfile;
|
||||
|
||||
public final class AppCapabilities {
|
||||
|
||||
private AppCapabilities() {
|
||||
}
|
||||
|
||||
private static final boolean UUID_CAPABLE = false;
|
||||
private static final boolean GROUPS_V2_CAPABLE = false;
|
||||
|
||||
public static SignalServiceProfile.Capabilities getCapabilities() {
|
||||
return new SignalServiceProfile.Capabilities(UUID_CAPABLE,
|
||||
GROUPS_V2_CAPABLE);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user