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

Commit 98005d1c authored by Xin Li's avatar Xin Li
Browse files

Merge 24Q3 (ab/11976889) to aosp-main-future

Bug: 347831320
Merged-In: I57ddbef96cb56cd5e2349825123fe099ce0df106
Change-Id: If2b11cf7f43ed62ae75b8eda427018515c66aa36
parents c482b329 dd515f3b
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -11,6 +11,14 @@ genrule {
    out: ["com/android/server/telecom/TelecomStatsLog.java"],
}

filegroup {
    name: "telecom-shell-commands-src",
    srcs: [
        "src/com/android/server/telecom/TelecomShellCommand.java",
    ],
    path: "src",
}

android_library {
    name: "TelecomLib",
    manifest: "AndroidManifestLib.xml",
@@ -33,7 +41,6 @@ android_library {
    platform_apis: true,
}


// Build the Telecom service.
android_app {
    name: "Telecom",
+3 −0
Original line number Diff line number Diff line
@@ -39,6 +39,9 @@ aconfig_declarations {
        "telecom_bluetoothroutemanager_flags.aconfig",
        "telecom_work_profile_flags.aconfig",
        "telecom_connection_service_wrapper_flags.aconfig",
        "telecom_remote_connection_service.aconfig",
        "telecom_profile_user_flags.aconfig",
        "telecom_bluetoothdevicemanager_flags.aconfig",
        "telecom_non_critical_security_flags.aconfig",
    ],
}
+1 −0
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"
+22 −6
Original line number Diff line number Diff line
package: "com.android.server.telecom.flags"
container: "system"

# OWNER=grantmenke TARGET=24Q3
flag {
  name: "voip_app_actions_support"
  is_exported: true
  namespace: "telecom"
  description: "When set, Telecom support for additional VOIP application actions is active."
  bug: "296934278"
}

# OWNER=grantmenke TARGET=24Q3
flag {
  name: "call_details_id_changes"
  is_exported: true
  namespace: "telecom"
  description: "When set, call details/extras id updates to Telecom APIs for Android V are active."
  bug: "301713560"
}

# OWNER=kunduz TARGET=24Q2
flag {
  name: "add_call_uri_for_missed_calls"
  is_exported: true
  namespace: "telecom"
  description: "The key is used for dialer apps to mark missed calls as read when it gets the notification on reboot."
  bug: "292597423"
}

# OWNER=tjstuart TARGET=24Q3
flag {
  name: "set_mute_state"
  is_exported: true
  namespace: "telecom"
  description: "transactional calls need the ability to mute the call audio input"
  bug: "310669304"
}

# OWNER=tjstuart TARGET=24Q3
flag {
  name: "get_registered_phone_accounts"
  is_exported: true
  namespace: "telecom"
  description: "When set, self-managed clients can get their own phone accounts"
  bug: "317132586"
}

# OWNER=tjstuart TARGET=24Q3
flag {
  name: "transactional_video_state"
  is_exported: true
  namespace: "telecom"
  description: "when set, clients using transactional implementations will be able to set & get the video state"
  bug: "311265260"
}

# OWNER=tjstuart TARGET=24Q3
flag {
  name: "business_call_composer"
  is_exported: true
  namespace: "telecom"
  description: "Enables enriched calling features (e.g. Business name will show for a call)"
  bug: "311688497"
  is_exported: true
}

# OWNER=tgunn TARGET=25Q3
flag {
  name: "get_last_known_cell_identity"
  is_exported: true
  namespace: "telecom"
  description: "Formalizes the getLastKnownCellIdentity API that Telecom reliees on as a system api"
  bug: "327454165"
+10 −0
Original line number Diff line number Diff line
package: "com.android.server.telecom.flags"
container: "system"

# OWNER=tgunn TARGET=24Q4
flag {
  name: "postpone_register_to_leaudio"
  namespace: "telecom"
  description: "Fix for Log.wtf in the BinderProxy"
  bug: "333417369"
}
Loading