Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Please advice the program (eclipse) to obtain operating system, version information and number of application in a blackberry device.

like image 905
Pankaj Avatar asked Jan 23 '23 16:01

Pankaj


1 Answers

os version: DeviceInfo.getSoftwareVersion()

number of running Apps:

ApplicationDescriptor[] ad = 
    ApplicationManager.getApplicationManager().getVisibleApplications();
int numberOfRunningApps = ad.length;
like image 93
Vivart Avatar answered Apr 28 '23 01:04

Vivart