aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/java/org/wordpress/android/InstanceIDService.java
blob: 8072547962d6d228b3867787217144c09f21d052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.wordpress.android;

import android.content.Intent;

import com.google.android.gms.iid.InstanceIDListenerService;

public class InstanceIDService extends InstanceIDListenerService {
    @Override
    public void onTokenRefresh() {
        // Register for Cloud messaging
        startService(new Intent(this, GCMRegistrationIntentService.class));
    }
}