I am trying to migrate my AIR mobile project from FlashDevelop to Adobe Flash Builder 4.7. In FlashDevelop I have my AIR application descriptor application.xml. When I created a new Flash Builder project it generated a new application descriptor (Mail-app.xml) in the /src folder, and put it into /bin-debug. However, when I try and copy the configuration from my old application descriptor to the new one, the Main-app.xml in the /bin-debug folder remains the same. I tried cleaning project, but it immediately recreates some sort of default application descriptor in /bin-debug. Where and what should I change so the changes will be picked by Flash Builder?
2 Answers
1
votes
0
votes
The problem was that Flash Builder puts the generated application descriptor in the same folder as the main application file. When I created the project, the descriptor was created in the root, as the generated Main.as went to the default package. However, when I copied my source file, the main application file was in a com.mycompany.myproject package; so, Flash Builder generated the new application descriptor and put it there, and I missed it. Problem solved.