tlenclos / react-native-audio-streaming

iOS & Android react native module to play an audio stream, with background support and media controls
MIT License
781 stars 255 forks source link

react 16 Deprecated React.PropTypes #135

Open zkeyword opened 6 years ago

zkeyword commented 6 years ago

"react": "^16.2.0", "react-native": "^0.51.0",

lucalas commented 6 years ago

Have you installed using npm command? I had the same problem because it isn't the last version instead use the last github repository version that resolve the proptypes deprecation.

UPDATE: You can find the answer here: #issues129

zkeyword commented 6 years ago

yes, i installed using npm command

andrejkovacik commented 6 years ago

I'm getting this error (when using Player component)

Cannot read property 'string' of undefined

this is from

Player.propTypes = {
    url: React.PropTypes.string.isRequired
};
manishkumar17963 commented 4 years ago

download prop-types package from node package manager and then import PropTypes from 'prop-types' and change React.PropTypes.string.isRequired to PropTypes.string.isRequired