summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortwyen <twyen@google.com>2017-07-11 15:36:39 -0700
committerEric Erfanian <erfanian@google.com>2017-07-12 09:41:37 -0700
commita33fbaf4077f712253e8ba62f491d095c8cbc82c (patch)
tree592dcd8834ea49150f6e9381e83b107db563793a
parent2fc4775eacc3f1c733ccf43c0fd3bf809da68f03 (diff)
downloadandroid_packages_apps_Dialer-a33fbaf4077f712253e8ba62f491d095c8cbc82c.tar.gz
android_packages_apps_Dialer-a33fbaf4077f712253e8ba62f491d095c8cbc82c.tar.bz2
android_packages_apps_Dialer-a33fbaf4077f712253e8ba62f491d095c8cbc82c.zip
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
-rw-r--r--java/com/android/voicemail/impl/AndroidManifest.xml7
-rw-r--r--java/com/android/voicemail/impl/PackageReplacedReceiver.java43
2 files changed, 50 insertions, 0 deletions
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 @@
</intent-filter>
</receiver>
+ <receiver android:name="com.android.voicemail.impl.PackageReplacedReceiver"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
+ </intent-filter>
+ </receiver>
+
<receiver android:name="com.android.voicemail.impl.CarrierVvmPackageInstalledReceiver"
android:permission="android.permission.BIND_VISUAL_VOICEMAIL_SERVICE"
android:exported="true">
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);
+ }
+ }
+}