11-13-2012 11:50 AM
11-14-2012 07:58 AM
Build the project.
Right click on the project > Build project
02-05-2013 03:58 AM
hi, I have the same problem. I built the project for device-debug. I don't have any error in the "problems" list, but I always get this error. Any idea why is this happening?
Thanks
02-05-2013 04:03 AM
Try to clean the project. Right click on the project > Clean project. Then build the project again without loading it to the device. When the build is finished then you can load it to the device.
02-05-2013 04:25 PM
Post console output here (output when you are building your project).
02-06-2013 09:25 AM
I experienced the same problem when trying to run our app on the simulator.
I discovered the cause in the bar-descriptor.xml file. For some reason the Simulator-Debug configuration pointed to a wrong asset path:
<asset path="arm/o.le-v7-g/myappname" entry="true" type="Qnx/Elf">myappname</asset>
instead of the correct path for the simulator binaries:
<asset path="x86/o-g/myappname" entry="true" type="Qnx/Elf">myappname</asset>
So when trying to run the app on the simulator the IDE didn't find the binaries in the specified path. After I corrected the path it immediately worked.
So maybe it's worth checking the path in which the binary files are located on your computer and if it is correctly specified in the bar-descriptor.xml. In case of device-debug, you should of course check the Device-Debug configuration.
In that case the path should probably look similar to the first one I mentioned above:
<asset path="arm/o.le-v7-g/myappname" entry="true" type="Qnx/Elf">myappname</asset>