views:

162

answers:

1

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

+5  A: 

os version: DeviceInfo.getSoftwareVersion()

number of running Apps:

ApplicationDescriptor[] ad = 
    ApplicationManager.getApplicationManager().getVisibleApplications();
int numberOfRunningApps = ad.length;
Vivart
Thank you. i am new to blackberry application development, could you please suggest any book that would help me developing blackberry program
Pankaj
http://docs.blackberry.com/en/developers/deliverables/1076/development.pdfThis pdf is a good ebook for blackberry java app development.
Vivart
This returns a String. Is there any documentation on the format of the string?
Casebash