File tree 4 files changed +19
-22
lines changed
android/src/main/java/com/getcapacitor/community/audio
4 files changed +19
-22
lines changed Original file line number Diff line number Diff line change @@ -395,10 +395,10 @@ Listen for asset completed playing event
395
395
396
396
#### ConfigureOptions
397
397
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 > |
402
402
403
403
404
404
#### PreloadOptions
Original file line number Diff line number Diff line change @@ -108,10 +108,10 @@ protected void handleOnResume() {
108
108
public void configure (PluginCall call ) {
109
109
initSoundPool ();
110
110
111
- this .fadeMusic = call .getBoolean (OPT_FADE_MUSIC , true );
111
+ this .fadeMusic = call .getBoolean (OPT_FADE_MUSIC , false );
112
112
113
113
if (this .audioManager != null ) {
114
- if (call .getBoolean (OPT_FOCUS_AUDIO , true )) {
114
+ if (call .getBoolean (OPT_FOCUS_AUDIO , false )) {
115
115
this .audioManager .requestAudioFocus (this , AudioManager .STREAM_MUSIC , AudioManager .AUDIOFOCUS_GAIN );
116
116
} else {
117
117
this .audioManager .abandonAudioFocus (this );
Original file line number Diff line number Diff line change @@ -32,19 +32,15 @@ public class NativeAudio: CAPPlugin {
32
32
}
33
33
34
34
@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)
47
41
}
42
+ } catch {
43
+ print ( " Failed to set setCategory audio " )
48
44
}
49
45
call. resolve ( )
50
46
}
Original file line number Diff line number Diff line change @@ -23,13 +23,14 @@ export interface NativeAudio {
23
23
24
24
export interface ConfigureOptions {
25
25
/**
26
- * indicating whether or not to fade audio.
27
- * @default true
26
+ * Indicating whether or not to fade audio.
27
+ * @default false
28
28
*/
29
29
fade ?: boolean ;
30
30
/**
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
+ */
33
34
focus ?: boolean ;
34
35
}
35
36
You can’t perform that action at this time.
0 commit comments