I am trying to make an integration between LWUIT and Blackberry JDE. I am importing the LWUIT .jar file into a library project and setting the dependencies of this library with another project. I am then creating a new LWUIT form and running the project. I am alwas getting a "ClassDefError".
How to integrate the LWUIT with blackberry? Anyone has a clue?
Why you don't use NetBeans?. I suggest you can use NetBeans for Blackberry development with LWUIT. And you can easily integrate Blackberry JDE with NetBeans.
Related
Native code can be added using a plugin in Cordova/Phonegap.
But is it possible to build the app with the plugin via the Adobe Phonegap Build site?
You can. You must contribute the plugin to the community and then you can use it.
This should help Contributing Plugins
I am new to BlackBerry Web Works.I am trying to create blackberry web works application using eclipse ide.For that I am trying to install it from "Help->Install New Software" in eclipse using http://www.blackberry.com/go/eclipseUpdate/3.6/web this link.But its not able to start download in eclipse version other than 3.6 and 3.7.
Again I have downloaded 3.7 eclipse .Still I am facing the same type problem and unable to download it.
Is there any solution to this problem or I have to use procedure given on development site?
Please help me to figure out this problem.
Thanks
Actually Blackberry doesn't support any more and you have to follow the procedure given on development site:
https://developer.blackberry.com/html5/documentation/what_is_a_webworks_app_1845471_11.html
I develope application for BlackBerry, I use JDE 7.1.0 and NetBeans 6.9
How to set Icon for BlackBerry Application in JDE NetBeans ?
If you use only Netbeans, consider use of BlackBerry Ant Tools
There's ant task rapc
and it has a nested element jdp, and jdp has icon property.
Check the link I provided above. There is full documentation for BB Ant Tools.
If you use Netbans + JDE, then set icon in JDE, just add a picture to your project and specify it as app icon in application descriptor file.
Go to BlackBerry_App_Descriptor.xml and there in the Application icons tab put your icon. Done.
I want to develop some modules with BlackBerry Java SDK in my application, and develop other modules with BlackBerry WebWorks. That I could take the advantage of both Java SDK & WebWorks. I don't know how to integrate them in one application.
I would seriously consider choosing one or the other. All the major APIs are accessible via WebWorks, and if you need a Java component you can build an extension.
The other way around, I suppose you could use some kind of webview that uses local html/css/js assets alongside a Java app, but that's a mess. You're better off just going with WebWorks.
You can use WebWorks to create your UI and then, what ever Java code you have you would have to import the Extension (.jar file) to your WebWorks project.
https://bdsc.webapps.blackberry.com/html5/documentation/ww_developing/using_javascript_extensions_1866976_11.html
I would like to develop a library (like a dll or jar) with Monodroid that can be called by Java applications on Android.
Is this possible?
If not, is there another possibility? (IPC...)
There is a solution for iOS, is there a similar solution for Android?
http://www.guidebee.biz/forum/viewthread.php?tid=172
Thank you!
A DLL compiled for Mono for Android will need the Mono runtime in order to run it, so it wouldn't be very useful for a standard Java app. Xamarin has some good documentation on the architecture available here. It is possible to go the other way around, though, and use Java libraries from within a Mono for Android application.