04-23-2012 11:17 PM - edited 04-23-2012 11:18 PM
I am trying to deploy some Qt apps that I have updated to work with the latest OS update as well as the bb Qt creator released here: https://github.com/blackberry/Qt/downloads
I am running the linux install.
The release/debug switch does not work to remove the -devmode -debugtoken from the blackberry-nativepackager call.
So I thought no problem, I will build and sign it from the command, here are the issues I have with that.
First, the packager complained about the <asset path="%QT_INSTALL_IMPORTS%">imports</asset> in the descriptor stating that %QT_INSTALL_IMPORTS% is an invalid path. So I put in the required absolute paths and managed to build the bar package.
Bar-signer will not sign the package though complaining:
Error: Code signing request failed because [run_native] in Entry-Point-User-Actions is not allowed.
So I remed out: <action system="true">run_native</action> from the descriptor, still no joy, it fails with the same message...
Does anyone have any insight how to edit the blackberry-nativepackage call from creator? Or any other advice as to where I am going wrong here?
I could be missing something obvious here in my frustration! ![]()
Thanks,
Jon
Solved! Go to Solution.
04-23-2012 11:53 PM
Error: Code signing request failed because [run_native] in Entry-Point-User-Actions is not allowed.
The error you are getting means you used
<action>run_native</action>
instead of (what you should be using)
<action system="true">run_native</action>
The result is that it should appear in Entry-Point-System-Actions instead of Entry-Point-User-Actions ![]()
If it's not working, maybe your .bar isn't being updated.
04-23-2012 11:57 PM
04-24-2012 12:12 AM
Thanks guys, Its sorted!
I was just being dopey... time for bed! ![]()
Cheers,
Jon