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

Commit e26e285e authored by Vladimir Komsiyski's avatar Vladimir Komsiyski Committed by Android (Google) Code Review
Browse files

Merge "Make SoundEffectListener optional in VDM" into main

parents bd9bbb39 c536ccfd
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1660,6 +1660,9 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
    }

    void playSoundEffect(int effectType) {
        if (mSoundEffectListener == null) {
            return;
        }
        try {
            mSoundEffectListener.onPlaySoundEffect(effectType);
        } catch (RemoteException exception) {