DO NOT MERGE: backporting from master:
CDMA: Add Network ID and System ID to CdmaCellLocation. Signed-off-by: Mike Lockwood <lockwood@android.com>
This commit is contained in:
@@ -571,7 +571,7 @@ final class CdmaServiceStateTracker extends ServiceStateTracker {
|
||||
try {
|
||||
registrationState = Integer.parseInt(states[0]);
|
||||
radioTechnology = Integer.parseInt(states[3]);
|
||||
baseStationId = Integer.parseInt(states[4], 16);
|
||||
baseStationId = Integer.parseInt(states[4]);
|
||||
baseStationLatitude = Integer.parseInt(states[5], 16);
|
||||
baseStationLongitude = Integer.parseInt(states[6], 16);
|
||||
cssIndicator = Integer.parseInt(states[7]);
|
||||
@@ -608,7 +608,7 @@ final class CdmaServiceStateTracker extends ServiceStateTracker {
|
||||
|
||||
// values are -1 if not available
|
||||
newCellLoc.setCellLocationData(baseStationId, baseStationLatitude,
|
||||
baseStationLongitude);
|
||||
baseStationLongitude, systemId, networkId);
|
||||
|
||||
if (reasonForDenial == 0) {
|
||||
mRegistrationDeniedReason = ServiceStateTracker.REGISTRATION_DENIED_GEN;
|
||||
|
||||
Reference in New Issue
Block a user