I am developing an app in which i need some network parameters cell id and pci.I have 5g enable device with android 10. I am trying to access cell id through telephonic manager here is code.
List<CellInfo> allCellInfo = telephonyManager.getAllCellInfo();
for (CellInfo info : allCellInfo){ if (info instanceof CellInfoNr && info.isRegistered()){ }}
But allCellInfo getting null.I am talking about 5g SA (Qualcomm device).
I have seen this post this but not really helps. Please help