How to enable background Audio Play in iOS React Native
Open ios/{APP_NAME}/Info.plist. Add 1 2 3 4 5 6 7 8 9 10 11 <plist> <dict> ... ... ... <key>UIBackgroundModes</key> <array> <string>audio</string> </array> </dict> </plist> Press r on the metro terminal Voila!