Add ALERT SoundType enum value (flutter/engine#20139)

https://github.com/flutter/flutter/issues/62143
This commit is contained in:
Todd Volkert 2020-07-29 23:55:38 -07:00 committed by GitHub
parent 79f4738130
commit 752bbf32de

View File

@ -430,7 +430,8 @@ public class PlatformChannel {
/** Types of sounds the Android OS can play on behalf of an application. */
public enum SoundType {
CLICK("SystemSoundType.click");
CLICK("SystemSoundType.click"),
ALERT("SystemSoundType.alert");
@NonNull
static SoundType fromValue(@NonNull String encodedName) throws NoSuchFieldException {