Skip to content

Commit 1e8c3e7

Browse files
authored
refactor(android): Remove deprecated hasOption usages (#109)
1 parent b954af3 commit 1e8c3e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android/src/main/java/com/getcapacitor/community/audio/NativeAudio.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ protected void handleOnResume() {
108108
public void configure(PluginCall call) {
109109
initSoundPool();
110110

111-
if (call.hasOption(OPT_FADE_MUSIC)) this.fadeMusic = call.getBoolean(OPT_FADE_MUSIC);
111+
this.fadeMusic = call.getBoolean(OPT_FADE_MUSIC, true);
112112

113-
if (call.hasOption(OPT_FOCUS_AUDIO) && this.audioManager != null) {
114-
if (call.getBoolean(OPT_FOCUS_AUDIO)) {
113+
if (this.audioManager != null) {
114+
if (call.getBoolean(OPT_FOCUS_AUDIO, true)) {
115115
this.audioManager.requestAudioFocus(this, AudioManager.STREAM_MUSIC, AudioManager.AUDIOFOCUS_GAIN);
116116
} else {
117117
this.audioManager.abandonAudioFocus(this);

0 commit comments

Comments
 (0)