02-06-2013 11:28 PM - edited 02-06-2013 11:29 PM
Unfortunately this is all I have to work off of. My application works great on the emulator. Apparently it won't even launch on a device. I failed verification with this message:
I am testing your app on the BlackBerry Dev Alpha, the application fails to launch. If the user selects the application icon, the app cannot launch and back to home screen.
I do not have a device of any kind, and I'm completely unable to test the application on a device. I have no idea what the error could be and I experience no problems running it on the emulator.
Does anybody have any idea where I could start looking for a problem? Anyone encounter a similar problem?
02-07-2013 12:19 AM
I seem pretty screwed on solving this without a device :/
I went over this page:
https://developer.blackberry.com/cascades/document
I had my .pro file device release settings styled the old way:
device {
CONFIG(release, debug|release) {
DESTDIR = o.le-v7
}
CONFIG(debug, debug|release) {
DESTDIR = o.le-v7-g
}
}
changed to the new way:
device {
CONFIG(release, debug|release) {
DESTDIR = o.le-v7
TEMPLATE=lib
QMAKE_CXX_FLAGS += -fvisible
}
I had already changed my main.cpp to include Q_DECL_EXPORT and my .bar file entryPoint tag as QNX/Cascades.
We'll see if this solves the issue I guess, can't test it myself :/
02-07-2013 03:22 AM