Why can't I adjust the media volume on my phone when my tuner is working, and can only adjust the call volume?

let stream: MediaStream | null = null
try {
// 1. 请求麦克风权限并获取音频流
stream = await navigator.mediaDevices.getUserMedia({
audio: true
})
} catch (error) {
console.error(‘获取麦克风权限失败:’, error);
stream = null
return;
}

Why can’t the media volume be adjusted when running on a mobile phone? It seems that it uses the voice call volume channel instead of the media/music volume

I think it’s a IOS problem on latest release, did you tried plugin @capgo/capacitor-volume-buttons - Capacitor Plugin… | Capgo