Merge a72c7ae3bb0687bd3a7552b2812123c5bedf6cf9 on remote branch
Change-Id: Ib55920c710af840b1089706abf5dcd3901e7b076
diff --git a/src/com/android/providers/telephony/TelephonyProvider.java b/src/com/android/providers/telephony/TelephonyProvider.java
index 90a0b8a..cec7e81 100644
--- a/src/com/android/providers/telephony/TelephonyProvider.java
+++ b/src/com/android/providers/telephony/TelephonyProvider.java
@@ -2234,9 +2234,38 @@
private void restoreDefaultAPN(int subId) {
SQLiteDatabase db = mOpenHelper.getWritableDatabase();
+ TelephonyManager mTm =
+ (TelephonyManager) getContext().getSystemService(Context.TELEPHONY_SERVICE);
+ SubscriptionManager sm = SubscriptionManager.from(getContext());
+ String selSubOperatorNumeric = mTm.getSimOperator(subId);
+ String otherSubOperatorNumeric = null;
+ String where = null;
+ List<SubscriptionInfo> subInfoList = sm.getActiveSubscriptionInfoList();
+ int simCountWithSameNumeric = 0;
+ if (subInfoList != null && subInfoList.size() > 1) {
+ where = "not (";
+ for (SubscriptionInfo subInfo : subInfoList) {
+ if (subId != subInfo.getSubscriptionId()) {
+ otherSubOperatorNumeric = mTm.getSimOperator(
+ subInfo.getSubscriptionId());
+ if (!otherSubOperatorNumeric.equalsIgnoreCase(selSubOperatorNumeric)) {
+ where = where + "numeric=" + otherSubOperatorNumeric + " and ";
+ } else {
+ simCountWithSameNumeric++;
+ }
+ }
+ }
+ where = where + "edited=" + USER_EDITED + ")";
+ }
+
+ if (simCountWithSameNumeric == subInfoList.size() - 1) {
+ //Reset where as all slots have same sims
+ where = null;
+ }
+ log("restoreDefaultAPN: where: " + where);
try {
- db.delete(CARRIERS_TABLE, null, null);
+ db.delete(CARRIERS_TABLE, where, null);
} catch (SQLException e) {
loge("got exception when deleting to restore: " + e);
}