add constructor in order to pass SENDER_ID to parent constructor,

as docs say to do
This commit is contained in:
Eric House 2012-11-15 21:14:45 -08:00
parent f64de16ce3
commit bda193029e

View file

@ -28,6 +28,11 @@ import com.google.android.gcm.GCMRegistrar;
public class GCMIntentService extends GCMBaseIntentService {
public GCMIntentService()
{
super( GCMConsts.SENDER_ID );
}
@Override
protected void onError( Context context, String error )
{