I want to create an application that is like the Open Signal app, but just the list of all GSM and WCDMA cell towers of a given network within range.
I can get one tower with its Cell ID and LAC.
I tried to get neighboring cell info, but it always returns a null value.
Also, can I get low level information like BCCH and BCIS? Please help. :)
GetSystemService(Context.TelephonyService);
GsmCellLocation cellLocation = (GsmCellLocation)telMag.CellLocation;
IList<NeighboringCellInfo> NeigboringList = telMag.NeighboringCellInfo;
foreach(NeighboringCellInfo u in NeigboringList)
{
gsm.Text += u.Cid.ToString() + " " + u.Lac.ToString() + " " +
u.Psc.ToString() + " " + u.Rssi.ToString() + " " + u.NetworkType.ToString();
}