Steps to Reproduce
- Create new code push update
- Install the app
- Wait for the update
Expected Behavior
The update to be successfull
Actual Behavior
What actually happens?
This is the logs from local build as you can see I got :
[CodePush] Downloading package.
› Sending
" CodePushDownloadProgress
with no listeners registered.
instrument. is: 110
LogBox. is: 173
[CodePush] Installing update.
[CodePush1 Update is installed and will be run when the app next resumes

This is happening on local build. The update is still not presented but there is no rollback. While on real device I do get rollbacks only.
Environment
- react-native-code-push version: 7.0.0
- react-native version: 0.68.2
- Does this reproduce on a debug build or release build? Release
- Does this reproduce on a simulator, or only on a physical device? Real Device
This is my Implementation :
So in my App.js I do have component like that :
The above component looks like that :
import codePush from 'react-native-code-push';
export class CodepushUpdater extends Component {
componentDidMount() {
codePush.notifyAppReady();
}
}
const codePushOptions = { installMode: codePush.InstallMode.ON_NEXT_RESUME,
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME };
export default codePush(codePushOptions)(CodepushUpdater);
When i go to the app center I see >

I did tried every single implementation. The ones from the examples and everything and no luck at all. Can you guys please give me a hand with that ?