Ionic 3 cordova-plugin-streaming-media. Hide "Home" "back" buttons

I can’t hide the virtual buttons “home”, “back”, “other”. I try:

this.androidFullScreen.isImmersiveModeSupported()
.then(() => { this.androidFullScreen.immersiveMode() })
.catch(err => console.log(err));

let options: StreamingVideoOptions = {
successCallback: () => { },
errorCallback: (e) => { },
orientation: ‘landscape’,
controls: true
};

this.streamingMedia.playVideo('https://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4', options);

hi, did you find the solution?

Have you tried this?

yes, I used this code, but it doesn’t work. The problem is only when I use the cordova-plugin-streaming-media plugin with a video, if I don’t display a video the full screen works

this.androidFullScreen.isImmersiveModeSupported().then(() => {
console.log(‘FULL SCREEN SUPPORTED’);
this.androidFullScreen.immersiveMode().then((dati) => {
console.log(‘FULL SCREEN ENABLED’);
}).catch((err) => {
console.error(‘FULL SCREEN NOT ENABLED’);
});
}).catch((err) => {
console.error(‘ERROR FULL SCREEN’);
console.error(err);
});