Is there anyway to find out the OS Platform version and Firmware version of the phone through API?
For OS Platform version, I found this which works only from S60 3rd Edition FP2 onwards.
But is there some other method which works for phone before S60 3rd edition FP2?Code:#include <versioninfo.h> // link against platformver.lib // iFs is an open file server session (RFs) VersionInfo::TPlatformVersion platformVersion; TInt ret = VersionInfo::GetVersion( platformVersion, iFs ); if( ret == KErrNone ) { // platformVersion now contains version information }
Thanks in advance.

Reply With Quote


