Skip to content

Commit b5363a2

Browse files
authored
fix: Use correct defaults for configure (#110)
1 parent 1e8c3e7 commit b5363a2

File tree

4 files changed

+19
-22
lines changed

4 files changed

+19
-22
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -395,10 +395,10 @@ Listen for asset completed playing event
395395

396396
#### ConfigureOptions
397397

398-
| Prop | Type | Description | Default |
399-
| ----------- | -------------------- | ------------------------------------------------- | ----------------- |
400-
| **`fade`** | <code>boolean</code> | indicating whether or not to fade audio. | <code>true</code> |
401-
| **`focus`** | <code>boolean</code> | indicating whether or not to disable mixed audio. | <code>true</code> |
398+
| Prop | Type | Description | Default |
399+
| ----------- | -------------------- | ------------------------------------------------- | ------------------ |
400+
| **`fade`** | <code>boolean</code> | Indicating whether or not to fade audio. | <code>false</code> |
401+
| **`focus`** | <code>boolean</code> | Indicating whether or not to disable mixed audio. | <code>false</code> |
402402

403403

404404
#### PreloadOptions

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

+2-2
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-
this.fadeMusic = call.getBoolean(OPT_FADE_MUSIC, true);
111+
this.fadeMusic = call.getBoolean(OPT_FADE_MUSIC, false);
112112

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

ios/Plugin/Plugin.swift

+8-12
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,15 @@ public class NativeAudio: CAPPlugin {
3232
}
3333

3434
@objc func configure(_ call: CAPPluginCall) {
35-
if let fade = call.getBool(Constant.FadeKey) {
36-
self.fadeMusic = fade
37-
}
38-
if let focus = call.getBool(Constant.FocusAudio) {
39-
do {
40-
if focus {
41-
try self.session.setCategory(AVAudioSession.Category.playback)
42-
} else {
43-
try self.session.setCategory(AVAudioSession.Category.ambient)
44-
}
45-
} catch {
46-
print("Failed to set setCategory audio")
35+
self.fadeMusic = call.getBool(Constant.FadeKey, false)
36+
do {
37+
if call.getBool(Constant.FocusAudio, false) {
38+
try self.session.setCategory(AVAudioSession.Category.playback)
39+
} else {
40+
try self.session.setCategory(AVAudioSession.Category.ambient)
4741
}
42+
} catch {
43+
print("Failed to set setCategory audio")
4844
}
4945
call.resolve()
5046
}

src/definitions.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ export interface NativeAudio {
2323

2424
export interface ConfigureOptions {
2525
/**
26-
* indicating whether or not to fade audio.
27-
* @default true
26+
* Indicating whether or not to fade audio.
27+
* @default false
2828
*/
2929
fade?: boolean;
3030
/**
31-
* indicating whether or not to disable mixed audio.
32-
* @default true */
31+
* Indicating whether or not to disable mixed audio.
32+
* @default false
33+
*/
3334
focus?: boolean;
3435
}
3536

0 commit comments

Comments
 (0)