Hi all,
Are there any way of the application knows whether the device is a Nokia device?
Thanks!
Hi all,
Are there any way of the application knows whether the device is a Nokia device?
Thanks!
Yes.
This does not work with all manufacturers, but it works on all Nokias.Code:String platform = System.getProperty("microedition.platform"); boolean isNokia = platform != null && platform.startsWith("Nokia");
Graham.