building problem: "apply returned: 1"

Hi there,

i try to build my app witch works fine with iOS. But building with android seems to make some troubles. This is what i get in the terminal:

"
Copyright © 2009-2011 A n s c a , I n c .
Version: 2.0.0
Build: 2011.524
The file sandbox for this project is located at the following folder:
(/Users/alex/Library/Application Support/Corona Simulator/Autos_0.9-FB54222DDDEE37EC4FC1A80F3D705BE4)
Using Custom Build Id 369ecf790e05334f102850d2e86d49c6
apply returned: 1
"

After the building ends there is no *.apk file.

Any ideas?
My app size is quite big (project folder 30mb), could this be the reason?
Thanks for your help
Alex
[import]uid: 7190 topic_id: 10509 reply_id: 310509[/import]

Any clues? *push* :wink:

I tried hard since yesterday and found still no solution, but project time is running.
So if anyone can help I wold be realy happy! [import]uid: 7190 topic_id: 10509 reply_id: 38391[/import]

Now i know a little bit more.

As soon as i remove my audiofiles from the projectfolder it compiles and runs on the device.
My audio files are located directly in the root directory of my project and are encoded in mp3.

The iOS building runs fine. Just the Android building-process stops.

??? [import]uid: 7190 topic_id: 10509 reply_id: 38424[/import]

Now i reduced my project to a few lines of code:

local mySound = audio.loadStream("beep\_mp3.mp3")  
  
function splash()  
 local background = display.newImage("Background\_yellow.png")  
  
 audio.play(mySound)  
end  
  
splash()  

It still does not compile if the “beep_mp3.mp3” is located in the project directory. If i remove the mp3, i get warnings, but it compiles and runs on the device.

I took the beep_mp3.mp3 from the sample projects folder, so there should be no problems with the codec. [import]uid: 7190 topic_id: 10509 reply_id: 38700[/import]