NuvioStreaming/react-native.config.js
2025-09-22 20:13:22 +05:30

17 lines
287 B
JavaScript

// Prevent expo-libvlc-player from linking on iOS (Android only)
module.exports = {
dependencies: {
'expo-libvlc-player': {
platforms: {
ios: null,
},
},
'react-native-vlc-media-player': {
platforms: {
ios: null,
},
},
},
};