mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 12:00:33 +00:00
17 lines
287 B
JavaScript
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,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
|