blackberry

Implementing Google Analytics in native BlackBerry Application

▼魔方 西西 提交于 2019-12-12 18:24:37
问题 I am looking for a way to push information to Google Analytics from a native BlackBerry App. The App is built towards BlackBerry 6.0 OS. I made a simple Google search about it, but the discussions I found are only confusing. Can someone please clarify what the options are to do this? Is it possible? 回答1: You need a browser context to use javascript based implementation of Google Analytics. Currently only iOS and Android SDK's are available to track analytics natively through Google Analytics.

Android - Estimate port of BlackBerry app with PIM and networking [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-12 18:22:06
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I have a J2ME CLDC Blackberry app which I need to port to the Android. Some of the features: client/server communication using HTTPS reading/writing PIMs, files on device memory, SD card listeners on PIMs changes

How to execute Blackberry OS 6 app in Blackberry 10 OS

大城市里の小女人 提交于 2019-12-12 18:21:19
问题 I developed one application in Blackberry OS 6.I deployed that app in to Blackberry world successfully.But it is not working in Blackberry OS 10.I am getting following error: Unsupported for this device Please help me how to run application in OS 10. Thanks in Advance. 回答1: OS10 is a completely different system. It no longer supports the BB6/7 Java environment. You will need to port your app to one of the new supported platforms: http://developer.blackberry.com/develop/platform_choice/index

How to check availability of internet connection(Wifi, GPRS, EDGE) in Blackberry

梦想与她 提交于 2019-12-12 18:20:15
问题 How to check availability of internet connection(Wifi, GPRS, EDGE) in Blackberry. 回答1: Try this....it worked for me . protected static boolean isInternetAvailable() { boolean flag = false; if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED){ flag = true; } else if(RadioInfo.isDataServiceOperational()){ flag = true; } return flag; } 来源: https://stackoverflow.com/questions/11670956/how-to-check-availability-of-internet-connectionwifi-gprs-edge-in-blackberry

Import existing BlackBerry project in Eclipse

烂漫一生 提交于 2019-12-12 18:10:45
问题 How can I import existing Blackberry projects into eclipse? I found this development guide for BlackBerry Eclipse users, but I didn't find any .jdw file: Import a BlackBerry application project from an existing workspace When I make new project and copy all the folder src and res I obtain an error that there is a file missing and there is no specification of type of the name of this file Error: Cannot run program "jar": CreateProcess error=2 . Can any one help me to run this project? 回答1:

BlackBerry App World Distribution of .jad files

假如想象 提交于 2019-12-12 17:27:43
问题 I am developing an app using Eclipse Plugin with BlackBerry JRE 4.5 to support devices with OS versions 4.5 and higher. I understand that when you use a JRE version lower than 4.7 and you deploy the app to a 4.7 device or a 5.0 device, the app will run in compatibility mode and as a result the virtual keyboard would appear. I followed this document to avoid running my app in compatibility mode. I was able to generate the .JAD files for version 4.7 only after I built the app with JRE 4.7. I

Get HTML response after sending POST data via BlackBerry

感情迁移 提交于 2019-12-12 17:22:28
问题 I need to read an HTML response from a URL after sending it POST data. I already have the following two functions but I don't know how to combine them so that I can send POST data AND get the response. This function gets a standard HTML response: public static String getDataFromUrl(String url) throws IOException { System.out.println("------------FULL URL = " + url + " ------------"); StringBuffer b = new StringBuffer(); InputStream is = null; HttpConnection c = null; long len = 0; int ch = 0;

Blackberry - “you currently have no new notifications”

谁说我不能喝 提交于 2019-12-12 16:23:46
问题 I'm using the code below (especially pushMessage method) to show some notification to user: public final class MyApplicationMessageFolder { public static final long MyFolderId = 0x1256789012F10123L; private ApplicationMessageFolder folder_; private ApplicationIndicator indicator_; private MyReadableListImpl collection_; public void pushMessage(String subject, String message) { try { if (collection_ == null) { collection_ = new MyReadableListImpl(); } if (indicator_ == null) {

Display static Google Map image in BlackBerry 5.0

扶醉桌前 提交于 2019-12-12 16:07:28
问题 I'm having a really interesting problem to solve: I'm getting a static google map image, with an URL like this. I've tried several methods to get this information: Fetching the "remote resource" as a ByteArrayOutputStream, storing the Image in the SD of the Simulator, an so on... but every freaking time I get an IlegalArgumentException . I always get a 200 http response, and the correct MIME type ("image/png"), but either way: fetching the image and converting it to a Bitmap, or storing the

Blackberry over the air installation

こ雲淡風輕ζ 提交于 2019-12-12 16:03:29
问题 I uploaded my blackberry application's delivarables to a server. I want my users to install the application from an url. Before uploading to remote server i made tests on localhost. No problem. But when i try to download .jad file from server it displays the file content, doesn't intall the application. Displayed text: Manifest-Version: 1.0 RIM-COD-Module-Name: ..... I thought it was about mime types so added these lines to .htaccess file in the folder with application files: Options -Indexes