Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.support.annotation.NonNull;

public class Main {
    private static final String ENCODED_GROUP_PREFIX = "__textsecure_group__!";

    public static boolean isEncodedGroup(@NonNull String groupId) {
        return groupId.startsWith(ENCODED_GROUP_PREFIX);
    }
}