Reputation: 746
When I changed a library (like 'react-native-image-crop-picker') version on package.json and distribute it with code push in users app the version not changed. They see older version of that library in app.
what should I do?
Upvotes: 0
Views: 1336
Reputation: 1211
Code Push only works with JS code. It doesn't allow to push native binaries. In your case, you have to update app bundles in stores to update your native dependencies.
The CodePush plugin helps get product improvements in front of your end users instantly, by keeping your JavaScript and images synchronized with updates you release to the CodePush server.
Taken from Code Push docs.
Upvotes: 4