mkv fix for ios

This commit is contained in:
tapframe 2025-08-13 01:48:40 +05:30
parent af286339f6
commit 876f77019e

14
react-native.config.js Normal file
View file

@ -0,0 +1,14 @@
module.exports = {
dependencies: {
'react-native-vlc-media-player': {
platforms: {
android: {
sourceDir: '../node_modules/react-native-vlc-media-player/android',
packageImportPath: 'import io.github.react_native_vlc_media_player.ReactNativeVlcMediaPlayerPackage;',
// Disable autolinking for Android
disable: true,
},
},
},
},
};