I have working on a fabulous problem since a week. I like to have all my apps whenever possible to be able to run on a iPod touch 3.0. This is my testing device.
First I had a CODE SIGN ERROR that I fixed by installing XCode 4.2 (for those who still have this problem — de-install and re-install XCode 4.2 iOS 5.0 and re-request certificates and everything should work).
Next problem, I could not run any app on my 3.0 device. I created a “HelloWorld” project in XCode from scratch and tried on my 3.0 device and did not work…
After searching, I found that we have to replace :
self.window.rootViewController = self.navigationController;
with
[self.window addSubview:self.navigationController.view];
Then, it work perfectly on 3.0 and above.
Ok - that’s long enough. Here is my problem:
Knowing that this is what cause the problem on Xcode, how can I make the correction in Corona-Lua so my apps work on iPod 3.0 and above ?
I read that Corona may not suitable for 3.0, is is true ?
As a small hint, I created a very small app using a build setting including minimumOSVersion=“3.0”,
a main.lua that has limited number of lines. By the way my small app, worked perfectly on a iPhone 3.1 and iPad.
Any clues ?
M. [import]uid: 116180 topic_id: 20615 reply_id: 320615[/import]