mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
20 lines
443 B
Java
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;
|
|
}
|
|
}
|