If you are experiencing an issue please mention the full platform your issue applies to:
Device: iOS 13.3
Today I updated my iPad and now all videos are failing. Only happens on this iOS version, even my live apps stopped working properly after the update.
This code does not work on iOS 13.3 now (tested on several devices):
Form hi = new Form("Player", new BorderLayout());
try {
Media m = MediaManager.createMedia("http://videos.yourappeasy.com/MURALTO.mp4", true);
MediaPlayer p = new MediaPlayer(m);
p.setAutoplay(true);
hi.add(CENTER, p);
} catch (IOException io) {
hi.add(CENTER, new Label("Error"));
}
hi.show();
Enter code here... Please, as you can see, this is critical.
Tahnk you for your help.