We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6181db commit f78840cCopy full SHA for f78840c
docs/API.md
@@ -31,7 +31,9 @@ Media methods
31
32
// (iOS only) Define the audio session category
33
// Options: Playback, Ambient and SoloAmbient
34
- category : PlaybackCategory (default: PlaybackCategory.Playback)
+ // you need to import PlaybackCategories: import { PlaybackCategories } from '@react-native-community/audio-toolkit'
35
+ // more infos about categories here: https://developer.apple.com/documentation/avfoundation/avaudiosession/category
36
+ category : PlaybackCategories (default: PlaybackCategories.Playback)
37
38
// Boolean to determine whether other audio sources on the device will mix
39
// with sounds being played back by this module. If this is not set, playback
0 commit comments