File size: 434 Bytes
f871013 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | package org.thoughtcrime.securesms.notifications;
import android.content.Context;
import androidx.annotation.Nullable;
/*
Fake do-nothing implementation of FcmReceiveService.
The real implementation is in the gplay flavor only.
*/
public class FcmReceiveService {
public static void register(Context context) {}
public static void waitForRegisterFinished() {}
@Nullable public static String getToken() { return null; }
}
|