Archived:Reading IMSI in Qt for Symbian
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
This relies on deprecated Mobile Extensions. Developers should instead use the cross platform Qt Mobility API:QSystemDeviceInfo
This relies on deprecated Mobile Extensions. Developers should instead use the cross platform Qt Mobility API:QSystemDeviceInfo
Article Metadata
Code Example
Source file: Media:QtGetIMSI.zip
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Article
Keywords: XQSysInfo::imsi()
Created: savaj
(20 Jun 2009)
Last edited: hamishwillee
(11 Oct 2012)
Contents |
Overview
This code snippets shows how to get IMSI number using a Mobile Extension. The XQSysInfo class provides information about the device. imsi() method of class XQSysInfo return IMSI number.
This snippet requires ReadDeviceData capabilities. Self-signing is not possible because a Developer Certificate (Symbian Signed) is needed.
Preconditions
- Download and Install the Qt SDK
- Go through this article: How to use Mobile Extension APIs in Qt for Symbian
Headers required
#include <XQSysInfo>.pro file
symbian:LIBS += -letel3rdparty \
-lsysutil \
-lefsrv \
-lfeatdiscovery
symbian:TARGET.CAPABILITY = ReadDeviceData
Source
Code Example
- The Code Example will show IMSI on screen and is tested on Nokia 5800 XpressMusic.


(no comments yet)