In my Ionic (v1)(Phonegap Build) App I open, with a touch of a button, some Apps like Spotify, Deezer or Napster. Since i updated to iOS10 none of them will open anymore. Debugging with Safari got me no errors at all.
I tried to search the Internet but couldn’t find any explanation for this. I open these Apps like this:
// Open in Android
navigator.app.loadUrl("spotify:album:"+spotifyID, {openExternal : true});
// Open in iOS
$window.open("spotify:album:"+spotifyID);
It worked without any Problems up to iOS9 but in iOS10 nothing happens when I touch the Button. Are there any Changes to this i couldn’t find?
Thank you for any hint.