TheoF
TheoF

Reputation: 795

Cordova plugin enabling a music player to play while phone locked

I am developing a Ionic app that includes a music player. It works well but when I lock my screen in an iOS device the music stops. I've searched some solution but haven't found one, is there a quick solution or a plugin enabling this or should I need to find someone to code a Cordova plugin to enable this?

Upvotes: 1

Views: 1630

Answers (1)

JanP
JanP

Reputation: 1581

We used this plugin: https://github.com/AubreyHewes/cordova-background-audio

ionic plugin add nl.kingsquare.cordova.background-audio --save
# OR
ionic plugin add https://github.com/AubreyHewes/cordova-background-audio.git --save # latest

Upvotes: 2

Related Questions