Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef32295e authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11104212 from 56641a6b to 24Q1-release

Change-Id: Ibf0d836274cfecd9ad9b4d0fc5713f7298ade471
parents 011c87f8 56641a6b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -31,5 +31,6 @@ aconfig_declarations {
      "uicc.aconfig",
      "satellite.aconfig",
      "iwlan.aconfig",
      "telephony.aconfig",
    ],
}
+8 −0
Original line number Diff line number Diff line
@@ -41,3 +41,11 @@ flag {
  description: "Expose apn setting supporting field"
  bug: "307038091"
}

flag {
  name: "network_validation"
  namespace: "telephony"
  description: "Request network validation for data networks and response status."
  bug:"286171724"
}
+22 −1
Original line number Diff line number Diff line
@@ -35,3 +35,24 @@ flag {
  description: "Check if access to mobile network configs restricted before displaying call options"
  bug: "309655251"
}

flag {
  name: "reorganize_roaming_notification"
  namespace: "telephony"
  description: "Reorganize conditions to show and dismiss roaming notifications."
  bug: "310594087"
}

flag {
  name: "dismiss_network_selection_notification_on_sim_disable"
  namespace: "telephony"
  description: "Fix to dismiss network selection notification when disable sim."
  bug: "310594186"
}

flag {
  name: "load_dds_on_create"
  namespace: "telephony"
  description: "Load default data subid on create in PhoneGlobals."
  bug: "310591561"
}
+8 −0
Original line number Diff line number Diff line
package: "com.android.internal.telephony.flags"

flag {
    name: "enforce_telephony_feature_mapping"
    namespace: "telephony"
    description: "This flag controls telephony feature flags mapping."
    bug:"297989574"
}
 No newline at end of file
+15 −1
Original line number Diff line number Diff line
@@ -441,9 +441,23 @@ public class TelephonyComponentFactory {
     * @param phone The phone instance
     * @param looper Looper for the handler.
     * @return The access networks manager
     * @deprecated {@link #makeAccessNetworksManager(Phone, Looper, FeatureFlags)} instead
     */
    public AccessNetworksManager makeAccessNetworksManager(Phone phone, Looper looper) {
        return new AccessNetworksManager(phone, looper);
        return new AccessNetworksManager(phone, looper, new FeatureFlagsImpl());
    }

    /**
     * Make access networks manager
     *
     * @param phone The phone instance
     * @param looper Looper for the handler.
     * @param featureFlags feature flags.
     * @return The access networks manager
     */
    public AccessNetworksManager makeAccessNetworksManager(Phone phone, Looper looper,
            @NonNull FeatureFlags featureFlags) {
        return new AccessNetworksManager(phone, looper, featureFlags);
    }

    public CdmaSubscriptionSourceManager
Loading