2

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?

linuxbuild
  • 15,843
  • 6
  • 60
  • 87
neb1
  • 209
  • 1
  • 12

1 Answers1

2

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;
}

http://www.developer.nokia.com/Community/Wiki/System_property_microedition.platform_values_for_Symbian_devices

Telmo Pimentel Mota
  • 4,033
  • 16
  • 22
  • thank.. but this no answer for my question.. I ask if i want to know if for example i want to check if gogle maps is installes on my device. how can i check that? – neb1 Feb 17 '13 at 07:37
  • 2
    You can not. Midlet application management service does not have a method for this. – Telmo Pimentel Mota Feb 18 '13 at 13:02