Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@ In order to ensure that your end users always have a functioning version of your

We try our best to maintain backwards compatibility of our plugin with previous versions of React Native, but due to the nature of the platform, and the existence of breaking changes between releases, it is possible that you need to use a specific version of the CodePush plugin in order to support the exact version of React Native you are using. The following table outlines which CodePush plugin versions officially support the respective React Native versions:

| React Native version(s) | Supporting CodePush version(s) |
|-------------------------|---------------------------------------------------------------------------------------------|
| <v0.76 | Use [microsoft/code-push-react-native](https://github.com/microsoft/react-native-code-push) |
| 0.76, 0.77, 0.78, 0.79 | v1.0+ *(Support both New and Old Architectures)* |
| v0.80 | v1.2 |
| Expo sdk 52 | v1.3 |
| React Native version(s) | Supporting CodePush version(s) |
|-------------------------|------------------------------------------------------------------------------------------------------|
| <v0.76 | Use original [microsoft/code-push-react-native](https://github.com/microsoft/react-native-code-push) |
| 0.76, 0.77, 0.78, 0.79 | v1.0+ *(Support both New and Old Architectures)* |
| v0.80 | v1.2 |
| Expo sdk 52 | v1.3 |
| v0.81 | v1.5 |


We work hard to respond to new RN releases, but they do occasionally break us. We will update this chart with each RN release, so that users can check to see what our "official" support is.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ public void removeListeners(Integer count) {
public ReactHostDelegate getReactHostDelegate(ReactHostImpl reactHostImpl) {
try {
Class<?> clazz = reactHostImpl.getClass();
Field field = clazz.getDeclaredField("mReactHostDelegate");
Field field = clazz.getDeclaredField("reactHostDelegate");
field.setAccessible(true);

// Get the value of the field for the provided instance
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@revopush/react-native-code-push",
"version": "1.4.0",
"version": "1.5.0",
"description": "React Native plugin for the CodePush service",
"main": "CodePush.js",
"typings": "typings/react-native-code-push.d.ts",
Expand Down