I try to check if application is installed on the device. In BlackBerry I can do it with
CodeModuleManager.getModuleHandle("applicationName");
How can I do it on the Nokia device?
I try to check if application is installed on the device. In BlackBerry I can do it with
CodeModuleManager.getModuleHandle("applicationName");
How can I do it on the Nokia device?
You can try the following code:
String platform = System.getProperty("microedition.platform");
boolean isNokia = false;
if (platform != null) {
platform = platform.toLowerCase();
isNokia = platform.indexOf("nokia") >= 0;
}