imei Questions
7
Solved
For a mobile shop application, I need to validate an IMEI number. I know how to validate based on input length, but is their any other mechanism for validating the input number? Is there any built-...
9
Solved
After a lot of research on forums, now I know that there is no way to find IMSI or SIM serial number for both the SIM cards in a dual SIM phone (except for contacting the manufacturer). Now my chan...
22
Solved
To identify each devices uniquely I would like to use the IMEI (or ESN number for CDMA devices). How to access this programmatically?
4
Solved
is Android Tablets (like Xoom) have IMEI number since they dont have telephony service? is having 3G/4G vs WiFi only tablets will effect the existence of the IMEI number ?
7
Solved
I want to get IMEI on iPhone. I try to use the following code:
#import "Message/NetworkController.h"
NetworkController *ntc=[[NetworkController sharedInstance] autorelease];
NSString *imeistring =...
Lowborn asked 5/5, 2009 at 3:24
12
For single SIM following code works:
TelephonyManager tm = (TelephonyManager)getSystemService(TELEPHONY_SERVICE);
String imei= tm.getDeviceId();
For dual SIM I tried code on following link:
And...
5
Our client's app main feature is heavily relaying on tracking their clients' devices, they offer products that are bound to the specific phone(not its owner). This was possible using the device ime...
Theotokos asked 25/9, 2019 at 17:19
12
Solved
I am getting the IMEI ID null from the telephonymanager. What to do?
is there any workaround for that?
2
Before Android 10, I was using the TelephonyManager API to retrieve that info, but it's no longer working in Android 10.
Swedenborgian asked 1/10, 2019 at 8:16
4
Solved
I am working on an app where I need details of user's SIM
his phone number, imei number and operator . so far I have achieved his IMEI's numbers refering this answer, is his device single sim or du...
2
Solved
Does anybody know how to check for a valid IMEI?
I have found a function to check on this page: http://www.dotnetfunda.com/articles/article597-imeivalidator-in-vbnet-.aspx
But it returns false fo...
5
Solved
Google Play Team has rejected my app because:
The advertising identifier must not be connected to
personally-identifiable information or associated with any persistent
device identifier ...
Emissivity asked 10/5, 2018 at 7:36
3
I found many post regarding this but not properly given answer.
My application needs IMEI number ,i did that but it is showing 000000000000000(15 zero's).
it is working fine with device but i want ...
Sekofski asked 3/7, 2012 at 4:2
3
Solved
********************************best way i found:**************************************
***************************that's workd successfully***********************************
***********...
4
I need to get imei on iPhones.
I use https://github.com/erica/uidevice-extension/blob/master/UIDevice-IOKitExtensions.m to get IMEI.
It works fine on iphone 4, 3GS ... even with ios5.
But...
2
How can I get both IMEI numbers from dual SIM mobile? Can anyone help me to resolve this problem.
8
I'm developing a PhoneGap Android mobile application using jQuery, JavaScript and HTML. I want to get the mobile IMEI. I have tried this code from this Tutorial.
I am getting the number like this:...
1
Solved
I'm working on an Android app and am getting null back for the IMEI number when using TelophonyManager. This is happening on several Huawei phones. (All of them are Ascend Y530s).
The phones all h...
Albertype asked 2/2, 2016 at 15:28
6
I m very new to Android Development.
I want to find the IMEI number of the phone and using "android.telephony.TelephonyManager;".
TelephonyManager telephonyManager = (TelephonyManager)getSystemSer...
1
Solved
Hi developers around the world, the app I am making is for in house distribution, we used some Apple's little secrets to get the app working as we want: like getting the IMEI and IMSI with methods ...
Boxberry asked 14/3, 2014 at 6:49
1
Solved
Google is replacing the unique Android ID (similar to Apple’s old UDID) with a new Advertising ID. Users will be able to reset the Advertising ID.
“Beginning August 1st 2014, all updates and new a...
Costermonger asked 6/11, 2013 at 15:25
1
Solved
Is there any way to add IMEI to AndroVM (now Genymotion) or any other Android Emulator. And also I want MAC address for wlan0 port. We already have emulators which contain MAC at lan0 port but not ...
Jamilla asked 16/10, 2013 at 8:54
3
Solved
I'm develop application for jailbroken iOS devices. I use https://github.com/erica/uidevice-extension/blob/master/UIDevice-IOKitExtensions.m to get IMEI, but on iPhone 5 this solution does not work...
Sicken asked 21/5, 2013 at 10:39
2
1
Solved
I have tried the accepted answer of
How to get IMEI on iPhone?
but I got an empty string.
I saw somebody suggested to use CoreTelephony framework,
but I am not sure how to use it to obtain the IM...
Maundy asked 5/4, 2013 at 14:45
1 Next >
© 2022 - 2024 — McMap. All rights reserved.