Skip to content

Commit 01c7456

Browse files
committed
ios: set audio playback category, fix #210
1 parent a02b921 commit 01c7456

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

darwin/Classes/FvpPlugin.mm

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023-2024 Wang Bin. All rights reserved.
1+
// Copyright 2023-2025 Wang Bin. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

@@ -130,6 +130,8 @@ + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
130130
auto messenger = registrar.messenger;
131131
#else
132132
auto messenger = [registrar messenger];
133+
// Allow audio playback when the Ring/Silent switch is set to silent
134+
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
133135
#endif
134136
FlutterMethodChannel* channel = [FlutterMethodChannel methodChannelWithName:@"fvp" binaryMessenger:messenger];
135137
FvpPlugin* instance = [[FvpPlugin alloc] initWithRegistrar:registrar];

0 commit comments

Comments
 (0)