orhan-swe
orhan-swe
@kenfouo This did not fix the issue for me. After a number of hours debugging this I finally got it working (my project is two years old): What worked for...
@moblizeit I am trying to do the same thing. Is owned() working for you?
@xallysie when using https://github.com/NeoLSN/cordova-plugin-android-permissions what permissions are you asking for?
It seems all notifications are needed: ``` var list = [ permissions.POST_NOTIFICATIONS, permissions.ACCESS_NOTIFICATION_POLICY, permissions.RECEIVE_BOOT_COMPLETED, permissions.WAKE_LOCK, permissions.POST_NOTIFICATIONS, permissions.SCHEDULE_EXACT_ALARM ]; permissions.hasPermission(list, function( status ){ .. ``` This works, though on clicking the...
Yeah, it was a bit confusing for me too. A good solution would be for loop function to check if the audio file is already being played and if not...
@rondybrandao First you call preload(), then you call play(), now music should start playing, and then you call loop(), so now it will also loop.