Merge "Add prefix to the definition of the Audio_Handler"

This commit is contained in:
Hwayoung Helen Kim
2023-01-10 16:22:31 +00:00
committed by Android (Google) Code Review

View File

@@ -894,11 +894,12 @@ public class MmTelFeature extends ImsFeature {
"android.telephony.ims.feature.extra.IS_UNKNOWN_CALL";
/** @hide */
@IntDef(flag = true,
value = {
AUDIO_HANDLER_ANDROID,
AUDIO_HANDLER_BASEBAND
})
@IntDef(
prefix = "AUDIO_HANDLER_",
value = {
AUDIO_HANDLER_ANDROID,
AUDIO_HANDLER_BASEBAND
})
@Retention(RetentionPolicy.SOURCE)
public @interface ImsAudioHandler {}