react-native-youtube
react-native-youtube copied to clipboard
Incompatibility with RN 0.69.5
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch [email protected]
for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/react-native-youtube/YouTube.ios.js b/node_modules/react-native-youtube/YouTube.ios.js
index 2e1bf41..bf005c1 100644
--- a/node_modules/react-native-youtube/YouTube.ios.js
+++ b/node_modules/react-native-youtube/YouTube.ios.js
@@ -1,6 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
-import ReactNative, { requireNativeComponent, NativeModules, ViewPropTypes } from 'react-native';
+import ReactNative, { requireNativeComponent, NativeModules } from 'react-native';
+import { ViewPropTypes } from 'deprecated-react-native-prop-types';
const RCTYouTube = requireNativeComponent('RCTYouTube', null);
This issue body was partially generated by patch-package.