java.lang.NoSuchMethodError: No virtual method getMccString()Ljava/lang/String;
问题 I am retrieving cell information data ( CellInfo ) from TelephonyManager For each cell info object, I am querying for mcc (Mobile Country Code) and mnc (Mobile Network Code) via eachCellInfo.cellIdentity.mcc eachCellInfo.cellIdentity.mnc Where eachCellInfo is an object of CellInfo The function is deprecated as per the doc: /** * @return 2 or 3-digit Mobile Network Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMncString} instead. */ @Deprecated public int getMnc() {