Can't build for ios device today

Hello,

I could build for iphone device with no problem yesterday.
But I can’t build today.
It gives me the error:

Using Custom Build Id cd23faac77be5b97a011bb8003c05d93
Corona Simulator(4521,0xa06e3540) malloc: *** error for object 0x2775ca14: incorrect checksum for freed object - object was probably modified after being freed.
*** set a breakpoint in malloc_error_break to debug
ERROR: An error occurred during build. The server returned the following message:
[Error: A device build error occurred on server.]
I received a notification for my team profile expired this morning.

So I tried to create a new App ID without using my team ID, but I still cant build for device.

Actually I am confused about the team ID, App ID, prefix, surfix thing.

Anyone please help…

Thanks!
[import]uid: 99926 topic_id: 17843 reply_id: 317843[/import]

What version of Corona are you using? What happens when you try to build some of the SampleCode included in the CoronaSDK folder?

Peach :slight_smile: [import]uid: 52491 topic_id: 17843 reply_id: 68089[/import]

sorry my mistake,

the problem is:
when build, the “Application name” can’t be chinese.

I suppose I can change the App name to chinese when I submit it to apple app store?

thanks peach pellen [import]uid: 99926 topic_id: 17843 reply_id: 68110[/import]

Oh easy fix :slight_smile:

In build.settings in your plist info put this line in;

[lua]CFBundleName = “YourAppName”[/lua]

The name there can be in Chinese and although the file Corona produces will not show a Chinese name, the app name will show in Chinese on device :slight_smile:

The name of the app in the store will be whatever you chose in iTunes Connect.

Peach :slight_smile: [import]uid: 52491 topic_id: 17843 reply_id: 68120[/import]

thanks!
that’s really helpful. [import]uid: 99926 topic_id: 17843 reply_id: 68130[/import]

No worries at all, glad I could help.

Peach :slight_smile: [import]uid: 52491 topic_id: 17843 reply_id: 68145[/import]

Hi,

I’ve tried this build.settings:

settings =
{
iphone = {
plist = {
UIPrerenderedIcon = true,
CFBundleName = “??”,
UIStatusBarHidden = true
},
},
}

then build for device( or xcode simulator ), but the app name under icon still remains the name I gave in corona’s build for device’s Application name, which can’t be chinese.

is there something I misunderstand about build.settings?

the “UIPrerenderedIcon” and “UIStatusBarHidden” works fine.

Thanks! [import]uid: 99926 topic_id: 17843 reply_id: 68286[/import]

Try adding CFBundleDisplayName = “??”. That should show up as the name on your device. [import]uid: 7559 topic_id: 17843 reply_id: 68436[/import]

Argh! I’m very sorry about that, I got a bit muddled I think.

Peach [import]uid: 52491 topic_id: 17843 reply_id: 68443[/import]

Thanks Tom, it works now!

peach pellen, never mind, thanks for the help :slight_smile: [import]uid: 99926 topic_id: 17843 reply_id: 68515[/import]