blackberry
Eclipse IDE- Add jar? Add External jar? Add Library?
What is an External JAR? External as the name suggest is a Jar file that is not built by the currently developing code. It is a utility Jar file that is added externally for extra features. It could be an API Jar file provided from the external site, just as in your case the 3 … Read more
Packaging Blackberry OAuth app throwing error
Make sure your java bin path is set in environment variable. http://docs.oracle.com/javase/tutorial/essential/environment/paths.html and take a look at the last 3 posts in the following website: http://supportforums.blackberry.com/t5/Java-Development/I-O-Error-Cannot-run-program-quot-jar-quot-CreateProcess-error-2/td-p/522638 Also make sure The Java® software development kit (Java SDK/JDK) is installed on the computer, and a correct version of the Java SDK is used. http://supportforums.blackberry.com/t5/Java-Development/I-O-Error-CreateProcess/ta-p/445949 As mentioned in … Read more
Can I write native iPhone, Android, Windows, Blackberry apps using Python? [duplicate]
Yes you can use kivy This is a nice cross platform python framework which works for Android, Win7, Linux, Mac. iOS is possibile but very trivial as Apple doesn’t allow scripting. And for Android Google provides something called ASE (Android Scripting Environment) which allows scripting languages (Python included) to run on Android. More details here … Read more
Mobile development – Native VS Cross Platform VS JavaScript [closed]
There are 500k+ apps on the app markets and competition is fierce. It is paramount to have great UX and graphics. Cross-platform tools are NOT on par with native development. If they were, we would all be using them. But we are not. With a reason – you do NOT have full control. And full-control … Read more
How to cache in a Blackberry BrowserField
I’ve been looking at your code, and the only thing I’ve found there’s wrong with it, is you are completely ignoring the possibility of response.getLength(); returning less than zero (in CacheManagerImpl.createCache()). Although this didn’t happen to me at the stackoverflow.com page, some pages use Transfer-Encoding: chunked, which means Content-Length is not present. This is, however, … Read more
Blackberry smartcard reader example
I think this is what you are looking for: http://code.google.com/p/seek-for-android/wiki/BTPCSC
What work has been done on cross-platform mobile development? [closed]
The HTML5 standard has support for releasing stand-alone HTML5 apps. Essentially a HTML5 app is a bundle of HTML5, JavaScript and CSS files that will run stand-alone in the browser of the desktop or device. You can distribute them like any other program, including selling them on the iStore for the iPhone. The support for … Read more
J2ME/Android/BlackBerry – driving directions, route between two locations
J2ME Map Route Provider maps.google.com has a navigation service which can provide you route information in KML format. To get kml file we need to form url with start and destination locations: public static String getUrl(double fromLat, double fromLon, double toLat, double toLon) {// connect to map web service StringBuffer urlString = new StringBuffer(); urlString.append(“http://maps.google.com/maps?f=d&hl=en”); … Read more
Developing cross platform mobile application [closed]
My answer here covers some of the technical limitations of cross-platfrom tools but let me expand a bit: I think that cross-platform tools have historically always been also-rans because such tools have the wrong philosophical focus. All the selling points for cross-plaform tools are the benefits they bring to developers. They are sold on the … Read more