From a33fbaf4077f712253e8ba62f491d095c8cbc82c Mon Sep 17 00:00:00 2001 From: twyen Date: Tue, 11 Jul 2017 15:36:39 -0700 Subject: Run VVM activation when dialer is updated VVM capability can change between dialer versions. For v10 the update is done through system image, so when the user get the new dialer they are guaranteed to received a onCellServiceConnected event() after boot, and activation will be triggered. This does not apply to play store update or side load. In this CL, activation will also be triggered when the app is updated. Bug: 35809267 Test: PackageReplacedReceiverTest PiperOrigin-RevId: 161592369 Change-Id: I6904ef0514f9eec8151cd28be8cf76255640b108 --- .../com/android/voicemail/impl/AndroidManifest.xml | 7 ++++ .../voicemail/impl/PackageReplacedReceiver.java | 43 ++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 java/com/android/voicemail/impl/PackageReplacedReceiver.java diff --git a/java/com/android/voicemail/impl/AndroidManifest.xml b/java/com/android/voicemail/impl/AndroidManifest.xml index eabeadbf1..6a7e689d2 100644 --- a/java/com/android/voicemail/impl/AndroidManifest.xml +++ b/java/com/android/voicemail/impl/AndroidManifest.xml @@ -120,6 +120,13 @@ + + + + + + diff --git a/java/com/android/voicemail/impl/PackageReplacedReceiver.java b/java/com/android/voicemail/impl/PackageReplacedReceiver.java new file mode 100644 index 000000000..6a7ca4a7b --- /dev/null +++ b/java/com/android/voicemail/impl/PackageReplacedReceiver.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +package com.android.voicemail.impl; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.telecom.PhoneAccountHandle; +import android.telecom.TelecomManager; +import com.android.voicemail.VoicemailComponent; + +/** Receives MY_PACKAGE_REPLACED to trigger VVM activation. */ +public class PackageReplacedReceiver extends BroadcastReceiver { + + @Override + public void onReceive(Context context, Intent intent) { + VvmLog.i("PackageReplacedReceiver.onReceive", "package replaced, starting activation"); + + if (!VoicemailComponent.get(context).getVoicemailClient().isVoicemailModuleEnabled()) { + VvmLog.e("PackageReplacedReceiver.onReceive", "module disabled"); + return; + } + + for (PhoneAccountHandle phoneAccountHandle : + context.getSystemService(TelecomManager.class).getCallCapablePhoneAccounts()) { + ActivationTask.start(context, phoneAccountHandle, null); + } + } +} -- cgit v1.2.3