I would like to know Location Area Code and Cell ID saved in sim card.
How to get Location Area Code and Cell ID in android phone.
best regards.
Values are base 16. Use it like:
String cellId = Integer.toHexString(location.getCid()); String cellLac = Integer.toHexString(location.getLac());