How to Sign my Blackberry App using LWUIT 1.5 GUIBuilder - lwuit

Please can anyone tell me the procedure on how to sign my app for blackberry and get the cod files after i finish a App using blackberry theme in lwuit 1.5 guibuilder .
Thanks

Get certificate from RIM here.
If you use Codename One just get the proper sig files and set them in the plugin. In LWUIT you will need to use the blackberry signing tool.

Related

Setting splash screen for hybrid project

I am new to hybrid technology, currently, I am working on the Ionic Framework with AngularJS & Cordova. My problem is how to set a splash screen for my project.
The target device of my application is iOS devices(iPhone & iPad).
Any help is greatly appreciated.
Regards,
Deepti Aggarwal
Although I am not sure how to do this solely with Phonegap, the Monaca IDE (cloud) for hybrid development allows you to add splash screens plus they take care of the dimensions for you. I would highly recommend an online IDE for hybrid development. Moreover, Monaca allows for free requests to and from their server where you can store data. They integrate Onsen UI; however, you can still import the Ionic Framework if you like.
Sorry I don't know exactly how to do this. Hope it helped.
Save a splash.png, splash.psd or splash.ai file within the resources directory at the root of the Cordova project (minimum size: 2208x2208 px)
Generate your splash screen: ionic resources --splash
If you are new to Hybrid application, then use the INTEL XDK for developing your application. Download the SDK and create a new project and you can edit the index.html page in the www folder. After completing the coding, you can build your android/ios/windows/chrome/web application by selecting the build tab and provide certificates and build with just click start building. Hope this helps you. Also, you can add a splash screen by just upload the screen.

Impliment Facebook connect phonegap (ios/android)

I am trying to implement facebook connect using phonegap for android/iOS .. But not getting any success.
Please help me.
In cordova only not achive this so u need to integrate with native code android means java ios means objective C .... so
Follow this steps
You can use that plugin.
https://github.com/phonegap/phonegap-facebook-plugin
I used it a year ago with no problem

Creating xcode project dynamically

I have to create a web application where user can create thier own iphone and android app for book, they can give inputs for book icons, can upload file in epub, pdf , txt format.
Can someone please suggest possible solution for how can I do it for iphone?
I have an idea of creating android project from command line and can also do the same from with in the application.
How will you run the android app created by your web on android device?

access a secure api

Can anyone tell me why this happen when i install the real device on my
blackberry.
I am using blackberry web/widget to develop app BB and the language that i used
is
phonegap which is support .html, .css, .javascript.
The app can be installed but after install the app does not have icon.
Then when click on run the error msg is,
“Error starting Carl’s Jr. Module CarlsJr attempt to access a secure api”
Any answer will be highly appreciated!
thanks,
regards,
Jamaley.
It sounds very much like you haven't signed your code.
RIM track the use of some sensitive BlackBerry APIs. This is indicated in the API reference documentation by a lock icon or are otherwise noted as "signed".
Please see the following url for more information about these keys and how to request yours
http://us.blackberry.com/developers/javaappdev/codekeys.jsp
Cheers
Ray

How can i display a webpage in a BlackBerry Browser field?

i'm developing a aplication for blackberry and i want to display a simple webpage (for example www.google.com). i'm having troubles using the examples on the blackberry developer page, can anyone give me an example that work? i'm using Eclipse and net.rim.device.api.browser.field.* api. my blackberry's device OS is 4.6
Try this code :
BrowserSession visit = Browser.getDefaultSession();
visit.displayPage("http://www.google.com");