Blackberry - How to get OS version information and number of applications

Consult the program (eclipse) for the operating system, version information, and number of applications on your Blackberry device.

+4
source share
1 answer

Os version: DeviceInfo.getSoftwareVersion()

number of running applications:

 ApplicationDescriptor[] ad = ApplicationManager.getApplicationManager().getVisibleApplications(); int numberOfRunningApps = ad.length; 
+9
source

Source: https://habr.com/ru/post/1299404/


All Articles