Fix issue with GCM

This commit is contained in:
Sylvain Berfini 2012-10-30 09:27:44 +01:00
parent d9667e4bc0
commit 4e19827310

View file

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