11-24-2012 09:26 AM
This is the only logical answer. Happened to me many times, on PB, simulator etc
12-01-2012 02:28 PM
I think I have figured out what was causing my error after many device-release builds.
I had a string length error in my code. Device debug mode ran with it, device build crashed when using right-click, tools, install.
I changed...
static char key[3];
void dochord(int r,int a, int b, int c, int x, int y, char sign[8]){
strcat(key,sign);
}
static char key[24];
void dochord(int r,int a, int b, int c, int x, int y, char sign[8]){
strcat(key,sign);
}
12-01-2012 08:12 PM
Meanwhile I solved my problem.
Turns out that AppWorld was using a newer build (10.0.9.1108) and that the fonts are much larger in that release.