Hi there,
we are trying to play a simple youtube video. We have found the following two configurations to be working, but they both only work in environment (iOS or Android).
works on iOS, does not work on Android
App.accessRule('https://*youtube.com/*', {
type: 'navigation'
});
App.accessRule('https://*youtube.com/*');
works on Android, does not work on iOS
App.accessRule('https://*youtube.com/*', {
type: 'navigation'
});
App.accessRule('https://*youtube.com/*');
App.accessRule('http://*');
App.accessRule('https://*');
We weren’t able to find a combination which works for both platforms. Do you know more and maybe even have a solution?