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

Commit b076f1e7 authored by Sahil Sonar's avatar Sahil Sonar 💬
Browse files

Merge tag 'android-14.0.0_r50' of...

Merge tag 'android-14.0.0_r50' of https://android.googlesource.com/platform/frameworks/opt/telephony into v1-u

Android 14.0.0 Release 50 (AP2A.240605.024)
parents bfe63191 0ce5603d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.


package {
    // See: http://go/android-license-faq
    default_applicable_licenses: [
@@ -108,6 +107,7 @@ java_library {
        "modules-utils-build_system",
        "modules-utils-fastxmlserializer",
        "modules-utils-statemachine",
        "services-config-update",
    ],

    optimize: {
+1 −1
Original line number Diff line number Diff line
@@ -18,4 +18,4 @@ tnd@google.com
xiaotonj@google.com

# Domain Selection code is co-owned, adding additional owners for this code
per-file EmergencyStateTracker*=hwangoo@google.com,forestchoi@google.com,avinashmp@google.com,mkoon@google.com,seheele@google.com
per-file EmergencyStateTracker*=hwangoo@google.com,forestchoi@google.com,avinashmp@google.com,mkoon@google.com,seheele@google.com,jdyou@google.com
+12 −11
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ aconfig_declarations {
    name: "telephony_flags",
    package: "com.android.internal.telephony.flags",
    srcs: [
        "calling.aconfig",
        "data.aconfig",
        "domainselection.aconfig",
        "ims.aconfig",

flags/calling.aconfig

0 → 100644
+15 −0
Original line number Diff line number Diff line
package: "com.android.internal.telephony.flags"

flag {
  name: "simultaneous_calling_indications"
  namespace: "telephony"
  description: "APIs that are used to notify simultaneous calling changes to other applications."
  bug: "297446980"
}

flag {
  name: "show_call_fail_notification_for_2g_toggle"
  namespace: "telephony"
  description: "Used in DisconnectCause and TelephonyConnection if a non-emergency call fails on a device with no 2G, to guard whether a user can see an updated error message reminding the 2G is disabled and potentially disrupting their call connectivity"
  bug: "300142897"
}
 No newline at end of file
+40 −2
Original line number Diff line number Diff line
package: "com.android.internal.telephony.flags"

flag {
  name: "auto_switch_allow_roaming"
  name: "auto_data_switch_allow_roaming"
  namespace: "telephony"
  description: "Allow using roaming network as target if user allows it from settings."
  bug: "306488039"
  bug: "287132491"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
@@ -90,3 +93,38 @@ flag {
  description: "Collect vonr status in voice call metric"
  bug:"288449751"
}

flag {
  name: "ignore_existing_networks_for_internet_allowed_checking"
  namespace: "telephony"
  description: "Ignore existing networks when checking if internet is allowed"
  bug: "284420611"
}

flag {
  name: "data_call_session_stats_captures_cross_sim_calling"
  namespace: "telephony"
  description: "The DataCallSessionStats metrics will capture whether the IWLAN PDN is set up on cross-SIM calling."
  bug: "313956117"
}

flag {
  name: "force_iwlan_mms"
  namespace: "telephony"
  description: "When QNS prefers MMS on IWLAN, MMS will be attempted on IWLAN if it can, even though if existing cellular network already supports MMS."
  bug: "316211526"
}

flag {
  name: "reconnect_qualified_network"
  namespace: "telephony"
  description: "This flag is for internal implementation to handle reconnect request from QNS in telephony FWK."
  bug: "319520561"
}

flag {
  name: "dsrs_diagnostics_enabled"
  namespace: "telephony"
  description: "Enable DSRS diagnostics."
  bug: "319601607"
}
 No newline at end of file
Loading