Hi
I do not belive this bug has anything to do with Siri, here just run this code it will mute the app even in corona simulator on Mac.
Is this still Apple’s issue when the bug is reproducible even in simulator. It seems to me as Corona SDK bug since looping for ca 90-100 times sound dies.
local text1
count = 0
function playSound()
count = count + 1
local click = audio.loadStream("test.mp3")
audio.play(click, {loops=0, channel=1 })
text1.text = "count: "..count
end
text1 = display.newText( "count: 0", 0, 0, native.systemFontBold, 34 )
text1:setTextColor( 255 )
text1:setReferencePoint( display.CenterReferencePoint )
text1.x, text1.y = display.contentWidth \* 0.5, display.contentHeight \* 0.5
timer.performWithDelay( 100, playSound, 0 )
[import]uid: 13099 topic_id: 31242 reply_id: 135811[/import]