diff --git a/src/org/linphone/gcm/GCMService.java b/src/org/linphone/gcm/GCMService.java index 080300853..bc514eae9 100644 --- a/src/org/linphone/gcm/GCMService.java +++ b/src/org/linphone/gcm/GCMService.java @@ -79,4 +79,8 @@ public class GCMService extends GCMBaseIntentService { editor.putString(context.getString(R.string.push_reg_id_key), null); editor.commit(); } + + protected String[] getSenderIds(Context context) { + return new String[] { context.getString(R.string.push_sender_id) }; + } }