Samsung/Tizen-CSharp-Samples

Retrieving IMEI & cell information from Tizen Wearable

wajidp opened this issue · 8 comments

Hi Team
Is there a way to retrieve IMEI & cell information like mcc,mnc,lac,cell etc via Tizen dotnet api's?

Hello, wajidp

I think.. it can't be accessed by Public API with normal privilege.
I will let someone add some comments for this case.

Thanks @sgchoi5 for the update, we have a client requirement for the same. Is it possible via Knox SDK?

@wajidp Could you let us know target device? Is it wearable?

@sgchoi5 yes wearable tizen 4.0

@wajidp Let us know your available privilege level (Platform / Partner / Normal)

partner

For getting proper IMEI via telephony API,
Application should have "http://tizen.org/privilege/securesysteminfo" privilege.

For an application with api-version 4.0,
if the application has http://tizen.org/privilege/telephony privilege,
this function returns a pseudo value as "000000000000000".
The returned value is not reliable data, it can't confirm the device's identification.

Please refer the updated telephony API doxygen as following link.

https://developer.tizen.org/development/api-references/native-application?redirect=https://developer.tizen.org/dev-guide/5.5.0/org.tizen.native.mobile.apireference/group__CAPI__TELEPHONY__INFORMATION__MODEM.html

https://developer.tizen.org/development/api-references/native-application?redirect=https://developer.tizen.org/dev-guide/5.5.0/org.tizen.native.mobile.apireference/group__CAPI__TELEPHONY__INFORMATION__MODEM.html#ga7e0c134af4fe12c9074f5feaccf9f5cc

@sinikang thanks