Y ykucuk Well-Known Member Licensed User Longtime User Jun 8, 2012 #1 is there any functions for get device serial number, sim number, owner name and default email address?
is there any functions for get device serial number, sim number, owner name and default email address?
gjoisa Active Member Licensed User Longtime User Jun 8, 2012 #2 use phone library . Check Phone library in Library tab in down side of property bar . Code like this : B4X: dim imei as int dim pid as PhoneId imei = pid.GetDeviceId Upvote 0
use phone library . Check Phone library in Library tab in down side of property bar . Code like this : B4X: dim imei as int dim pid as PhoneId imei = pid.GetDeviceId
Y ykucuk Well-Known Member Licensed User Longtime User Jun 8, 2012 #3 thank you for reply but if it is tablet and no telephone functions how can i get device serial number Upvote 0
thank you for reply but if it is tablet and no telephone functions how can i get device serial number
pluton Active Member Licensed User Longtime User Jun 8, 2012 #4 Like this: B4X: Dim pid As PhoneId Dim pserial As Phone Msgbox("Serial ID is: " &pserial.GetSettings("android_id") &CRLF& "IMEI is: " &pid.GetDeviceId,"Hello") Last edited: Jun 8, 2012 Upvote 0
Like this: B4X: Dim pid As PhoneId Dim pserial As Phone Msgbox("Serial ID is: " &pserial.GetSettings("android_id") &CRLF& "IMEI is: " &pid.GetDeviceId,"Hello")