Fix issue with GCM
This commit is contained in:
parent
d9667e4bc0
commit
4e19827310
1 changed files with 4 additions and 0 deletions
|
@ -79,4 +79,8 @@ public class GCMService extends GCMBaseIntentService {
|
||||||
editor.putString(context.getString(R.string.push_reg_id_key), null);
|
editor.putString(context.getString(R.string.push_reg_id_key), null);
|
||||||
editor.commit();
|
editor.commit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected String[] getSenderIds(Context context) {
|
||||||
|
return new String[] { context.getString(R.string.push_sender_id) };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue