Questions tagged [react-native-code-push]
162 questions
2
votes
1 answer
Deployment keys are empty appcenter code push cli
Im trying to retrieve code push deployment keys using this command:
appcenter codepush deployment list -a --displayKeys
it return an empty table :
Ios/Android apps were added to appcenter console

B. Mohammad
- 2,152
- 1
- 13
- 28
2
votes
0 answers
How CodePush bundle download works for the final user?
I'm trying to understand how the code-push bundle size is calculated to understand the impact of the network requests for the final user
I'm debugging the update_check endpoint that is triggered by codePush.sync and I realize that in some updates…

Gabriel Santos
- 302
- 1
- 11
2
votes
0 answers
Can we release codepush for only specific devices?
My react-native app has the following problem:
There some rare mobile users who have a same problem on production, but I cannot reproduce it on dev env.
So my approach is releasing code-push with debuggable feature for those users only. Assume that…

Neo.Mxn0
- 953
- 2
- 8
- 25
2
votes
0 answers
React Native Android build duplicate error
I have a problem when bundling my android app with Android Studio (with react native). It shows me the following error:
[string/CodePushDeploymentKey] /Users/{user}/{app}/android/app/src/main/res/values/strings.xml
[string/CodePushDeploymentKey]…

Fredyonge
- 300
- 1
- 4
- 17
2
votes
1 answer
adding code push key react native android
I am using react native above 0.60 and I was trying to generate the release apk and uploaded it to google play so I added the code push key of production in buildTypes like this:
buildTypes {
release {
buildConfigField…

Alaa Elmohr
- 55
- 5
2
votes
0 answers
Segment trackEvent doesn't work right after CodePush update installs
Our React Native project has both Segment and CodePush integrated.
Segment works fine, normally.
But there's a scenario where Segment stops working right after a CodePush update has been installed. Nothing gets flushed out and none of the events are…

Yeshan Jay
- 1,403
- 1
- 9
- 18
2
votes
0 answers
How to use CodePush only on Android with React Native
I'm currently building a React Native app which will be available only on Android for now. I decided to use Code Push to update the app without the Google Play analysis delay. I installed the react native library on my project and successfully…

Guilherme Ramalho
- 186
- 2
- 15
2
votes
1 answer
react-native-code-push uses deprecated "rnpm" How to remove warning
I have implemented a code push in my project when I run the project it showing the following deprecation warning.
How to solve this warning?
More About issue
react-native-code-push/issues/1625
warn The following packages use deprecated "rnpm" config…

Sagar
- 5,273
- 4
- 37
- 50
2
votes
0 answers
How to differentiate between codepush and storepush
I am currently building an App using react-native where we are integrating it with Codepush service.
I know that we can explicitly call Codepush server from build script using command like -
appcenter codepush release-react
However, as per my…

Shibasis Sengupta
- 629
- 1
- 6
- 21
2
votes
0 answers
codepush update's appVersion is incorrect. It's always the same as the current app's version
I am trying to get codepush working for my react-native app on Android. For better understanding and control, i am manually checking for updates. Here's my code:
// Check for Codepush app update every time app is opened.
console.log('Checking for…

Kira
- 415
- 4
- 16
2
votes
1 answer
How to handle potential race conditions between codepush and Google playstore / Apple appstore
I just built my first React Native app and am very excited about the ability to send OTA updates via codepush. However, what does the release process look like when I have made changes.
Imagine the following happens:
v1 -> released to playstore
v2…

Kira
- 415
- 4
- 16
2
votes
0 answers
com.facebook.react.common.JavascriptException: undefined is not an object (evaluating 'f.seed'), stack:@939:615
When I run the same app from codepush built with jenkins, it always crash after performing a specific set of action. But when I try to debug this same app by building locally, through Android Studio/Xcode, with an emu or with a phone, this same…

user59290
- 138
- 1
- 10
2
votes
2 answers
React native IllegalViewOperationException - Trying to remove a view index above child count 0 view tag: 1
I found this issue in my App.js which had the following render method:-
render() {
if (this.state.isDownloading) {
return (

Sujay Naik
- 21
- 1
- 5
2
votes
0 answers
Codepush is not updating the app
I am using code push to update the app at run time. I already updated app 4-5 times. Now currently I have added auth and share functionality to the app with third party packages. I have commented all the code for share and auth functionality. I also…

Mobile_Devs
- 55
- 8
2
votes
1 answer
React Native Codepush - Exclude image assets for certain releases
Our release bundles are kinda huge (~50MB) and the clients take approx. 1-2 mins to download the update from codepush.
We're mostly just updating the js bundles, is there a way to just delta update the js bundle without re-downloading all image…

tropicalfish
- 1,230
- 1
- 16
- 29