Questions tagged [react-native-code-push]

162 questions
1
vote
1 answer

Integrating react-native-code-push into gitlab-ci.yml

I am trying to integrate react-native-code-push into my gitlab-cli.yml script: image: openjdk:8-jdk #Defining the Docker Image react-native-code-push: stage: react-native-code-push script: - appcenter login --token…
1
vote
1 answer

react-native-code-push:compileDebugJavaWithJavac FAILED - Build Failed(React-native version - 0.67.2)

Adnroid Build failed with below errors: Task :react-native-code-push:compileDebugJavaWithJavac FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. React-native version -…
Nensi Kasundra
  • 1,980
  • 6
  • 21
  • 34
1
vote
0 answers

react-native-code-push + react-native-sentry don't update correctly js

I use Sentry + code push in ma project but my push code install is causing problem.... On a version in test flight, the modifications were not applied correctly (while without push code everything is ok). Can i with sentry install it this way: first…
E.D
  • 831
  • 3
  • 16
  • 33
1
vote
0 answers

iOS app crashes while trying to install Codepush update and also update rollback happens

"react-native": "0.51.0", "react-native-code-push": "^5.2.1", using appcenter-cli iOS version: 13.1.3 I code pushed a new version of the app, made it mandatory and the JSbundle is getting downloaded whereas its not getting installed.…
1
vote
1 answer

CodePush target versions and Testflight

So I have uploaded a code push earlier with the target version as ">=1.0.1" (Already out on the app store) But now I have an updated version uploaded to Testflight version 1.0.2 so I went back into the App center code push console, and updated the…
watthecode
  • 91
  • 2
  • 5
1
vote
2 answers

react native iOS build failed on code push by : Undefined symbols for architecture x86_64:

the react native project fail on building the iOS with this error Undefined symbols for architecture x86_64: "___isPlatformVersionAtLeast", referenced from: -[MSDeviceTracker updatedDevice] in AppCenter(MSDeviceTracker.o) +[MSUtility…
1
vote
0 answers

Is there a way to have OTA updates on React Native for tvOS?

We've got an entire suite of iOS/Android apps build on react native and we want to build a tvOS app. It looks like Microsoft's CodePush doesn't support tvOS, which may leave out the option. Is there any way to get OTA updates to a react native tvOS…
SamWise
  • 698
  • 10
  • 16
1
vote
0 answers

react-native-code-push How to judge the update?

in app.js : componentDidMount() { codePush.sync({ installMode: codePush.InstallMode.IMMEDIATE, updateDialog: true, }); } run app, show: but my versionName Same as server! Get the server return information through…
1
vote
1 answer

Should I generate a native build when i add native libraries in react native 0.61+?

I have been using RN 0.61.+ for my android and ios app with Codepush for remote JS updates. With react native auto-linking enabled in 0.60+. When we add a native library, there is no native code added in the android and ios folders except that we…
1
vote
1 answer

Submitting a new APK to the Play Store which has changes that Codepush isn't aware of

I am using Codepush to update my React Native Android App so I can make changes without having to submit a new APK. The problem is, if I change some code and submit this as a new APK without sending it to Codepush, the App downloads a previous…
1
vote
1 answer

How to determine if native apk / JS bundle has to be created for apps with RN >=0.60

I have been using code-push in production for more than 2 years. How I implemented? Whenever android folder of my react native app was modified, I assumed there is a native change and my CI/CD tool created a native apk file. In all other cases, I…
Hannan Shaik
  • 1,298
  • 2
  • 14
  • 27
1
vote
0 answers

React native using deep link after code push sync

I am working with React Native code push and deep link. They works fine. The problem is, when I click in deep link with token, like /tokenValidation/:token, will open the application in first screen, so redirect route to tokenValidation, and request…
1
vote
0 answers

react-native-code-push not working in react native setup

I am using react native , I have added react-native-code-push using pod installation , I am have all steps as per docs https://github.com/microsoft/react-native-code-push/blob/master/docs/setup-ios.md . able build APP, I am able to run app success…
Sport
  • 8,570
  • 6
  • 46
  • 65
1
vote
1 answer

Error when implementing codepush in android: reactNativeCodePush_androidDeploymentKey

When I try to implement codepush, I receive this error: Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0. Use '--warning-mode all' to show the individual deprecation warnings. See…
schoenbl
  • 663
  • 2
  • 14
  • 29
1
vote
2 answers

How to keep in sync code push and appstore's version?

I tried Code Push with react-native for the first time and I have a below question. Let's say I have published an app with version 1.2.0 on AppStore and I push a code-push version for that specific target (1.2.0). Now, the update popup is shown to…