After upgrading from react-native 0.19 to 0.20. When I run iOS emulator from react-native run-ios command, my app is throwing following error:
View has no propType for native prop RCTView.maxHeight of native type CGFloat
If you haven't changed this prop yourself, this means that your versions of the native code and javascript code are out of sync.
Updating both should make this error go away
However, When I run the emulator from XCode, My app works fine. I'm not able to figure out what part is native code and what is javascript code so that I can get them in sync, as pointed out by error message.
Screenshot:

Node version: 5.6.0
Hey @BilalBudhani, the {min/max}{Width/Height} props were removed in https://github.com/facebook/react-native/pull/5522, the Flexbox layout library RN uses (https://github.com/facebook/css-layout) doesn't support them correctly, sorry about that! Is it possible to achieve your layout without those?
There's a feature request for this: https://github.com/facebook/react-native/issues/4644.
I'll close this as that answers your question.
I'd like to ask a meta question :)
I've added the Issue template and hoping it would make it clear it's best to ask on StackOverflow first before filing a bug on GitHub.
Is that description clear enough? What did you think when you saw it? Was it too long for example?
@mkonicek The issue template did made me think twice before creating this issue. However, I believe the Stackoverflow section should be moved to the top, swapping with debug and fix section. Because I feel that's the most occurred scenario.
Also, What me create this issue here rather than posting on StackOverflow is, The app was breaking when ran from command line and not from XCode. That made me certain that this is a bug needs to be reported.
I also get this error on new repo. To reproduce, I do:
$ react-native init repro
$ cd repro
$ react-native run-ios
$ react-native -v
react-native-cli: 1.0.0
react-native: 0.32.0
Most helpful comment
I also get this error on new repo. To reproduce, I do: