Files
arcanechat-android/src/foss/java/org/thoughtcrime/securesms/notifications/FcmReceiveService.java
T
2026-03-11 18:53:16 +01:00

20 lines
443 B
Java

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;
}
}