本文整理匯總了Java中com.google.android.gms.iid.InstanceID.deleteToken方法的典型用法代碼示例。如果您正苦於以下問題:Java InstanceID.deleteToken方法的具體用法?Java InstanceID.deleteToken怎麽用?Java InstanceID.deleteToken使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.android.gms.iid.InstanceID
的用法示例。
在下文中一共展示了InstanceID.deleteToken方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onHandleIntent
import com.google.android.gms.iid.InstanceID; //導入方法依賴的package包/類
@Override
protected void onHandleIntent(final @NonNull Intent intent) {
Timber.d("onHandleIntent");
try {
final InstanceID instanceID = InstanceID.getInstance(this);
instanceID.deleteToken(getString(R.string.gcm_defaultSenderId), GoogleCloudMessaging.INSTANCE_ID_SCOPE);
Timber.d("Deleted token");
} catch (final Exception e) {
Timber.e("Failed to delete token: %s", e);
}
}
示例2: handleRegistrationTokenCleanup
import com.google.android.gms.iid.InstanceID; //導入方法依賴的package包/類
/**
* Cleanup GCM token accosicated with a specific GCM sender ID.
*
* @param gcmSenderID GCM sender ID
*/
void handleRegistrationTokenCleanup(Context context, String gcmSenderID) {
try {
InstanceID instanceID = InstanceID.getInstance(context);
instanceID.deleteToken(gcmSenderID, GoogleCloudMessaging.INSTANCE_ID_SCOPE);
} catch (IOException e) {
MobileMessagingLogger.e(InternalSdkError.ERROR_GCM_TOKEN_CLEANUP.get(), e);
}
}
示例3: unRegisterToken
import com.google.android.gms.iid.InstanceID; //導入方法依賴的package包/類
/**
* Unregister/delete token
*
* @param instanceID instance of {@link InstanceID} associated with the sender Id
* @param senderId Sender ID for which the token has to be deleted
*/
private void unRegisterToken(InstanceID instanceID, String senderId) throws IOException {
instanceID.deleteToken(senderId, GoogleCloudMessaging.INSTANCE_ID_SCOPE);
GcmHelper.getInstance().onTokenDeleted(getApplicationContext());
}