mirror of
https://github.com/zoriya/react-native-video.git
synced 2025-12-06 07:16:12 +00:00
20 lines
533 B
JavaScript
20 lines
533 B
JavaScript
// https://github.com/react-native-community/cli/blob/main/docs/dependencies.md
|
|
|
|
module.exports = {
|
|
dependency: {
|
|
platforms: {
|
|
/**
|
|
* @type {import('@react-native-community/cli-types').IOSDependencyParams}
|
|
*/
|
|
ios: {},
|
|
/**
|
|
* @type {import('@react-native-community/cli-types').AndroidDependencyParams}
|
|
*/
|
|
android: {
|
|
packageImportPath: "import com.twg.video.react.VideoPackage;",
|
|
componentDescriptors: ["RNCVideoViewComponentDescriptor"],
|
|
},
|
|
},
|
|
},
|
|
};
|