Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a33fbaf4 authored by twyen's avatar twyen Committed by Eric Erfanian
Browse files

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
parent 2fc4775e
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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">
+43 −0
Original line number Diff line number Diff line
/*
 * 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);
    }
  }
}