Test build for device

Hi all,
I’m at a stage now where my app needs to be tested on my device (iPad).
I’ve been trying to follow Peach’s stickied threads in this forum, but I’m just not having any luck at all.
When I try to build the app, I click on the drop down for the Code Signing whatsit and it says not available in trial. Now I’ve not yet subscribed, but I was under the impression that I could do test builds without needing to subscribe.
Am I missing something obvious here as I’m starting to pull my hair out (and there’s not a lot left as it is!) [import]uid: 7841 topic_id: 20266 reply_id: 320266[/import]

You must pay Apple $99 for developer certificates.
And you must use the developer, not distribution profile with Corona for trial.
[import]uid: 7563 topic_id: 20266 reply_id: 79244[/import]

I am having a similar problem. When I go to build, I use the default build settings and it says it has built, but when I install it on my phone, the app never opens and says it keeps chrahing. Why does this happen

(I am using the free trial of Corona on windows7) [import]uid: 116264 topic_id: 20266 reply_id: 79248[/import]

@ewing, I’ve already paid up to Apple, and got the certificates, I just can’t get it to build. [import]uid: 7841 topic_id: 20266 reply_id: 79250[/import]

@willjhoward - Crashing on start up is often the result of a problem in the code. (A signing error normally shows a warning.) You may want to post in the Android section to get some Android specific advice.
(You may also consider downloading ldb logcat for more info on the crashes.)

@Appletreeman - Is that a popup? Can you access the dropdown list after closing it? (Sorry, I haven’t used a non subscriber account in awhile ;))

Peach :slight_smile: [import]uid: 52491 topic_id: 20266 reply_id: 79341[/import]

@peach pellen

thanks peach. Is logcat for my phone or pc and where can I download it? [import]uid: 116264 topic_id: 20266 reply_id: 79374[/import]

Several useful results here.

Questions about it should go in the Android forum - I am by no means an Android expert and I don’t use a PC currently so can’t advise you on the finer points. (But someone in that forum will be able to.)

Peach :slight_smile: [import]uid: 52491 topic_id: 20266 reply_id: 79385[/import]

@Peach. It’s all sorted now. I just switched everything off and went out for a bit and when I came back it worked OK. Flippin’ computers!

One more thing I will ask about though is build settings and config.lua files. I’ve read the various docs but I just can’t ‘get it’. What is supposed to go in each? Problem is I know bugger all about plist files and how they should be formatted. My app is iPad only and plays in landscape mode.

Cheers [import]uid: 7841 topic_id: 20266 reply_id: 79394[/import]

Basic config.lua for iPad;

[lua]application = {
content = {
width = 768,
height = 1024
}
}[/lua]

Basic build.settings;

[lua]settings = {

orientation = {
default = “landscapeRight”,
supported = { “landscapeRight”, “landscapeLeft” }
},

iphone = {
plist = {
UIStatusBarHidden = true,
UIPrerenderedIcon = true,
UIApplicationExitsOnSuspend = true
}
},
}[/lua]

Any questions?

Peach :slight_smile: [import]uid: 52491 topic_id: 20266 reply_id: 79647[/import]

Thanks Peach, worked a treat.
Although, being landscape mode shouldn’t the width=1024 and height=768 :wink:
[import]uid: 7841 topic_id: 20266 reply_id: 79817[/import]

Actually you’d think that, but NO!

Normal width and height regardless of orientation.

… That confused me originally, too.

Peach :wink: [import]uid: 52491 topic_id: 20266 reply_id: 79969[/import]