Questions tagged [react-native-code-push]

162 questions
0
votes
0 answers

React Native CodePush update issue

I have configured react-native-codepush in my react-native project. When i release an update in the appcenter I can see the release history but after the release when I reopen the app for the first time I could not see any update but when I reopen…
Shariq
  • 83
  • 2
  • 13
0
votes
0 answers

Reactnative codepush not checking updates when app is running in foreground

Code below works fine but expected scenario is when app is active and running in foreground, it suppose too check updated and show dialog, but it only checks when app is restarted.. I checked official documentations of codepush, but nothing looks…
0
votes
1 answer

How to resolve android compile error 'cant find symbol' from react-native-code-push

not sure what the issue is here. the build had no issues when building/distributing on Microsoft appcenter. the only thing I remember doing relating to code-push after it successfully built was adding different deployment keys to…
0
votes
0 answers

Appcenter error with React Native Android release

I am deploying react-native android app to AppCenter , and i see below mentioned error command used : appcenter codepush release-react -a xxx-xxx.com/TestApp -d Staging
0
votes
1 answer

Conditional Appcenter Codepush based on Environment?

Hi i'm using React Native Code Push currently. Currently my code is manually handling it because of the need to prevent it from codepushing builds that are in the staging / testing environment. I had a problem earlier when i did a release build for…
user11666430
0
votes
0 answers

Different ways to update a react-native

I will be pushing a react-native app to App Store and play store. Since the product is still under dev (beta right now) I would like to push the app updates to users. I am aware that codepush will help me push js changes but are there ways where…
Anika
  • 160
  • 2
  • 10
0
votes
1 answer

Code-Push with CI/CD and native dependency changes

I am readying an app for release to the app stores and I'm concerned with CI/CD pipeline and Code-Push. How does this scenario play out: If a developer makes NPM dependency updates and there is a package updated that has native code changes that the…
Cory Robinson
  • 4,616
  • 4
  • 36
  • 53
0
votes
1 answer

React Native - edit code push target / version number (in the app)

I'm trying to create a small react native app that uses Code Push for updates and it works!, - however i'm a bit confused about the " target versions " - the binary version that code push uses to target which users should receive the update. Where…
0
votes
2 answers

react-native code push getting error in ios ,using pod

I am using code push in react native app but getting error at compile time , pod version in project # React Native requirements pod 'React', :path => '../node_modules/react-native', :subspecs => [ 'Core', 'CxxBridge', # Include this for RN…
0
votes
1 answer

React-Native 0.60+ with linked libs not running despite "Dependency Graph" loading

I have an ejected react-native app with multiple linked libraries which fails to run in Android (works in iOS). The Dependency Graph loads to 100% and it shows the the splash screen on the emulator sometimes, but it immediately crashes when the…
0
votes
1 answer

Changes allowed in react-native code-push

I have added react-native-code-push in my react native app and if I add a new page in my page and then deploy it on code-push cloud, it will work or not? What is the limit of changing the things in react-native-code-push? Please do tell that what if…
Rahul Syal
  • 545
  • 2
  • 6
  • 21
0
votes
2 answers

codepush with wix navigation on iOS

I've been stuck on this for two days now and even though this question has been asked. None of the answers helped me. I am using Wix Navigation V2 and trying to use CodePush for instant updates. In staging, I can see CodePush logs and updates…
0
votes
1 answer

RN code-push: testing component that hooks into codePushStatusDidChange

I'm using the react-native-code-push codePush HOC, and running some logic in response to a codePushStatusDidChange event hook, in particular, when the status is SyncStatus.UPDATE_INSTALLED. I haven't had luck finding out whether there is a way to…
twelve17
  • 688
  • 8
  • 20
0
votes
2 answers

Cannot read property 'CheckFrequency' of undefined

My team recently added CodePush to our React Native app, and while it works perfectly fine on the original local repository, when I pull the changes I get the error Cannot read property 'CheckFrequency' of undefined This occurs after installing…
Sam Hollenbach
  • 652
  • 4
  • 19
0
votes
1 answer

AppCenter's responsibility

I'm trying to figure out the CI portion that provided by AppCenter. I've implemented CodePush for my app and please correct me if my understanding is wrong. We build the native android app and generate a signed apk. Release the generated signed apk…