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

Unverified Commit 5286249c authored by Michael Bestas's avatar Michael Bestas
Browse files

Merge tag 'android-16.0.0_r3' into staging/lineage-23.0_merge-android-16.0.0_r3

Android 16.0.0 Release 3 (BP3A.250905.014)

# -----BEGIN PGP SIGNATURE-----
#
# iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCaRO/HQAKCRDorT+BmrEO
# eOSUAJ0QmQwOblOi9IjywN1pqeO6ZP6dCwCgiSoS1tlKXwsGUQ/loLVPcb5cngA=
# =sB2e
# -----END PGP SIGNATURE-----
# gpg: Signature made Wed Nov 12 00:56:29 2025 EET
# gpg:                using DSA key 4340D13570EF945E83810964E8AD3F819AB10E78
# gpg: Good signature from "The Android Open Source Project <initial-contribution@android.com>" [ultimate]

# By Pranav Madapurmath (44) and others
# Via Android (Google) Code Review (103) and Android Build Coastguard Worker (58)
* tag 'android-16.0.0_r3': (128 commits)
  Place audio routing ops back onto handler thread
  Clarify "preferred audio route" logs.
  Prevent infinite SPEAKER_OFF looping
  Revert "Enable checking the binding of Bluetooth InCallService"
  Resolve NPE crash when BT cmpt enabled
  Introduce a wait for CallAudioRouteController teardown during testing
  Enable checking the binding of Bluetooth InCallService
  Revert^2 "replace mContext.pm() refs w/ context.createContextAsUser.getPm()"
  Increased timeout in CallAudioRouteControllerTest
  replace hasBaseUserRestriction with getProfileParent
  Implement call connected indicator APIs
  fix abort call not informing clients
  Revert "replace mContext.pm() refs w/ context.createContextAsUser.getPm()"
  replace mContext.pm() refs w/ context.createContextAsUser.getPm()
  Bypass hold in ECC dial for same phone accounts
  Clean up maybe_default_speaker_after_unhold flag
  Add the flag for the integrated call logs
  replace the Handler with an Executor in AsyncRingtonePlayer
  When in an ACTIVE call, SELECT_PHONE_ACCOUNT should work across subs
  replace Ringer reference to <Handler> with a <Executor>
  ...

 Conflicts:
	flags/telecom_callaudioroutestatemachine_flags.aconfig
	src/com/android/server/telecom/AudioRoute.java
	src/com/android/server/telecom/CallAudioRouteController.java
	src/com/android/server/telecom/bluetooth/BluetoothStateReceiver.java
	tests/src/com/android/server/telecom/tests/CallAudioRouteControllerTest.java
	tests/src/com/android/server/telecom/tests/CallSequencingTests.java

Change-Id: I28fbc814e5fea0774e53dd5e71e333c800c2aa58
parents 1cfce4f5 36973399
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@

    <protected-broadcast android:name="android.intent.action.SHOW_MISSED_CALLS_NOTIFICATION"/>
    <protected-broadcast android:name="com.android.server.telecom.MESSAGE_SENT"/>
    <protected-broadcast android:name="android.telecom.action.CALL_BACK"/>

    <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>

@@ -68,6 +69,8 @@
    <uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT"/>
    <uses-permission android:name="android.permission.ACCESS_LAST_KNOWN_CELL_ID"/>
    <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
    <!-- Used for checking appops permissions with PermissionManager. -->
    <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />

    <permission android:name="android.permission.BROADCAST_CALLLOG_INFO"
         android:label="Broadcast the call type/duration information"
+1 −3
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ aconfig_declarations {
        "telecom_calls_manager_flags.aconfig",
        "telecom_anomaly_report_flags.aconfig",
        "telecom_callaudiomodestatemachine_flags.aconfig",
        "telecom_calllog_flags.aconfig",
        "telecom_resolve_hidden_dependencies.aconfig",
        "telecom_bluetoothroutemanager_flags.aconfig",
        "telecom_work_profile_flags.aconfig",
@@ -44,8 +43,7 @@ aconfig_declarations {
        "telecom_bluetoothdevicemanager_flags.aconfig",
        "telecom_non_critical_security_flags.aconfig",
        "telecom_headless_system_user_mode.aconfig",
        "telecom_session_flags.aconfig",
        "telecom_metrics_flags.aconfig",
        "telecom_voip_flags.aconfig",
        "telecom_integrated_call_log.aconfig",
    ],
}
+0 −8
Original line number Diff line number Diff line
package: "com.android.server.telecom.flags"
container: "system"

# OWNER=tjstuart TARGET=24Q3
flag {
  name: "gen_anom_report_on_focus_timeout"
  namespace: "telecom"
  description: "When getCurrentFocusCall times out, generate an anom. report"
  bug: "309541253"
}

# OWNER=tjstuart TARGET=25Q2
flag {
  name: "disconnect_self_managed_stuck_startup_calls"
+24 −0
Original line number Diff line number Diff line
@@ -82,3 +82,27 @@ flag {
  description: "Allow system apps such as accessibility to accept and end VOIP calls."
  bug: "353579043"
}

# OWNER=grantmenke TARGET=25Q4
flag {
  name: "reuse_original_conn_remote_conf_api"
  is_exported: true
  namespace: "telecom"
  description: "Allow reusing the telephony connection when creating a new conference call."
  bug: "391889544"
  metadata {
      purpose: PURPOSE_FEATURE
  }
}

# OWNER=tgunn TARGET=26Q2
flag {
  name: "call_connected_indicator_preference"
  is_exported: true
  namespace: "telecom"
  description: "Add call connected indicator support for playing a tone or starting a vibration"
  bug: "146090790"
  metadata {
      purpose: PURPOSE_FEATURE
  }
}
+0 −10
Original line number Diff line number Diff line
@@ -18,13 +18,3 @@ flag {
    purpose: PURPOSE_BUGFIX
  }
}
# OWNER=grantmenke TARGET=25Q2
flag {
  name: "skip_baseline_switch_when_route_not_bluetooth"
  namespace: "telecom"
  description: "Only switch back to baseline if the call audio is currently routed to bluetooth"
  bug: "333417369"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}
 No newline at end of file
Loading