I solved my problem with Background Audio Playing on iOS:
Install cordova-plugin:
ionic plugin add cordova-plugin-background-mode
Initialize Audio Playing like this:
BackgroundMode.enable();
NativeAudio.loop('uniqueId1').then(......);
This works on iOS but not on Android. Audio playing stops immediately when App is in background or screen is locked. There is an notification “App is running in background” what looks promising - but audio stops…
Any ideas?