deltachat-android / src /foss /java /org /thoughtcrime /securesms /notifications /FcmReceiveService.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() {} | |
| public static String getToken() { return null; } | |
| } | |