Hello
I’ve used mp3-s in my app, but when it appears that they dont play in Android I tried to switch to wav-s. I’ve converted all my mp3-s to wav-s and tried to build application. But as the result I’ve got “Build failed…” message box and no errors in console window. Can someone help me to solve this propblem? [import]uid: 31161 topic_id: 8115 reply_id: 308115[/import]
Hi,
I haven’t tried this in Android but the following works just fine for me on iOS:
I save all wav files with the follwing settings:
- compressor: uncompressed
- frequency: 22050
- sample rate: 16 Bit
- channels: mono
I also add the following line to my config.lua file:
audioPlayFrequency = 22050,
Example:
application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox”,
xAlign = “center”,
yAlign = “top”,
audioPlayFrequency = 22050,
imageSuffix =
{
["@2x"] = 2,
},
},
} [import]uid: 4589 topic_id: 8115 reply_id: 28896[/import]