mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-10 14:38:33 +00:00
18 lines
511 B
Java
18 lines
511 B
Java
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);
|
|
}
|
|
}
|