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

Unverified Commit a10024d3 authored by Michael Bestas's avatar Michael Bestas
Browse files

Merge tag 'android-14.0.0_r50' into staging/lineage-21.0_merge-android-14.0.0_r50

Android 14.0.0 Release 50 (AP2A.240605.024)

# -----BEGIN PGP SIGNATURE-----
#
# iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCZmdzpQAKCRDorT+BmrEO
# eH2iAJ9zgWuOlGipcatEnqWPGztVpPQ7pACfegl4FjnwwIbKV2rC2qYScJK/ywQ=
# =02br
# -----END PGP SIGNATURE-----
# gpg: Signature made Tue Jun 11 00:44:05 2024 EEST
# gpg:                using DSA key 4340D13570EF945E83810964E8AD3F819AB10E78
# gpg: Good signature from "The Android Open Source Project <initial-contribution@android.com>" [marginal]
# gpg: initial-contribution@android.com: Verified 2485 signatures in the past
#      2 years.  Encrypted 4 messages in the past 2 years.
# gpg: WARNING: This key is not certified with sufficiently trusted signatures!
# gpg:          It is not certain that the signature belongs to the owner.
# Primary key fingerprint: 4340 D135 70EF 945E 8381  0964 E8AD 3F81 9AB1 0E78

# By Hunsuk Choi (20) and others
# Via Android (Google) Code Review (154) and others
* tag 'android-14.0.0_r50': (178 commits)
  Re-Add a flag to Enable Carrier N1 Mode Control
  Revert "Satellite Internet Support"
  Satellite Internet Support
  Set ImsReasonInfo for all reasons in onCallStartFailed
  Reduce Advance band timer when PCI changes
  Add subscription Id as parameter when invoke satellite settings activity
  Mock the flag for DSRMData test
  NR connected idle state handles both NR/NR advanced
  Add minimal_telephony_managers_conditional_on_features flag
  Fix Telephony stack for Minimal Automotive Telephony
  Return false if isSatelliteViaOemProvisioned returns null
  Add minimal_telephony_cdm_check flag
  Process security algorithm updates
  Change emergency mode from CALLBACK to WWAN when starting a call
  Add res config for roaming
  Remap IMS_EMERGENCY_TEMP_FAILURE to EMERGENCY_TEMP_FAILURE
  Exit connecting state when there is no NetworkRequest attached.
  Collect connectivity diagnostics related information from DSRS
  Introduce aconfig flag to report anamaly for config changed
  Resolve infinite getPhoneCapability loop.
  ...

Change-Id: I42ad073b1b94bde66e1b3451a149df830da1fbc3
parents a97d6d0b 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