Add prefix to the definition of the Audio_Handler

Bug: 250815288
Bug: 255715090
Test: Build and atest ImsCallingTest#testSetCallAudioHandler
Change-Id: Iaee74daf90ca2a95c7547c47a14e3c5138d82db5
This commit is contained in:
Hwayoung Helen Kim
2022-12-19 02:08:31 +00:00
parent d21ac1432e
commit d64cac1064

View File

@@ -831,11 +831,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 {}