Questions tagged [react-native-code-push]
162 questions
0
votes
2 answers
Option for OTA Update In React Native without expo. are using code push fully free for ota update?
Hi Guys I want to implement OTA update in react native. I found an option using Codepush app center, but is it fully free for OTA update? because I saw pricing page. Is there any better option? thanks
A free OTA update service and can be implemented…

Jonathan Suhangita
- 116
- 4
0
votes
0 answers
When CodePush App rollsback due to unknown reason, will it try to update again automatically?
I want to ask about a certain codepush scenario.
If my Codepush enabled react native App does a rollback while installing a new update due to unknown reason (failed install etc. ), then will it try to re-sync and try to install the latest codepush…

Azhar92
- 923
- 2
- 8
- 17
0
votes
1 answer
how do i have to wrap codepush component on react-native
is it okay if I use codepush like this?
in my index.js
const RNRedux = () => (
);
AppRegistry.registerComponent(appName, () => RNRedux);
I wrapped app component with redux provider
and in my App…

questionsmas
- 3
- 2
0
votes
0 answers
Error update React-Native to 0.70.0 :react-native-code-push:packageDebugResources
I'm with error, when I build my app Android.
Execution failed for task ':react-native-code-push:packageDebugResources'.
Error while evaluating property 'namespace' of task ':react-native-code-push:packageDebugResources'
Failed to calculate the…

Elias Aparecido Marciano
- 67
- 1
- 5
0
votes
0 answers
react native code push: (UNKNOWN_ERROR) when poor network connectivity
We are using react-native-code-push package in our app. I suspect that I got an UNKNOWN_ERROR when there was no or poor network connectivity on both my Android and iOS device/simulator. When the network connectivity is stable, it is working as…

Bansari Patel
- 66
- 4
0
votes
1 answer
CodePush 400: {"status":400,"name":"Error","message":"Missing required query parameter \"deployment_key\""}
After rebuilding with React Native 0.70.1/react-native-code-push 7.05 project/Xcode 14/Monterey , npx react-native run-ios launch successfully without any error but the console screen throws error:
[CodePush] An unknown error occurred.
LOG …

user938363
- 9,990
- 38
- 137
- 303
0
votes
0 answers
To support both Android and IOS do I need 2 React Native apps (one for code push IOS and another for code push Android)?
I am adding react-native-code-push to my React Native 0.68 app. Here is the Get Started doc (v7.0.5) says about how to support both android and iOS platform:
[Note, if you are targeting both platforms it is recommended to create separate CodePush…

user938363
- 9,990
- 38
- 137
- 303
0
votes
1 answer
Do you need to change the target binary version for CodePush before you make any changes you want included in that version?
Ok, so this might seems obvious but I need to be extra sure and can't find a clear answer anywhere (maybe because it's obvious). Do you need to change the target binary version for CodePush before you make any changes you want included in that…

gabriellend
- 265
- 2
- 12
0
votes
1 answer
how to wrap App component while using sentry with codepush react native
while using sentry with appcenter's codepush how to wrap the main App component
like this:
export default Sentry.wrap(codePush(App));
or like this:
export default codePush(Sentry.wrap(App));
or is there any other method to execute the above task
I…

Shantanu Ingle
- 41
- 4
0
votes
0 answers
Distinguish CodePush updates by buildNumber/versionCode
Is it possible that two builds, with the same version, but different build numbers(iOS)/versionCode(Android), to target different CodePush updates?
For example, I have a React Native application, and I have built two iOS…

Dusan
- 163
- 13
0
votes
1 answer
Different CodePush options for Staging/Prod
In order to serve updates faster to testers, I would like to use different CodePush options for Staging and Production. For example, in Staging distributions, I would like to remove minimumBackgroundDuration from the config below
let codePushOptions…

softcode
- 4,358
- 12
- 41
- 68
0
votes
1 answer
React-Native CodePush Build Failure - No matching configuration of project :react-native-code-push found
I am trying to enable codepush in my react native application. Using repo https://github.com/microsoft/react-native-code-push
I am facing build failure on the following Environment
Environment:
=============
react-native-code-push…

Aditya Mertia
- 495
- 7
- 19
0
votes
2 answers
What's happen if send an unsupported React-Native component to CodePush?
According to CodePush documentation, some React-Native components are not supported. Should I take precautions before sending an update to CodePush? Because if I send an unsupported component it may break the update.
In short, Does CodePush accept…

ridvanaltun
- 2,595
- 2
- 15
- 28
0
votes
1 answer
appcenter command not found after successful global install
npm install -g appcenter-cli
I installed appcenter-cli with the above command. It gets installed successfully but I get error message while using the appcenter command. Says it 'appcenter' is not recognized.
Here is the full error messages:
On…

Manish Bista
- 3
- 4
0
votes
1 answer
How to deploy codespush bundle on old targets when there are native changes on the new build
Before i continue, let me let you know that i know the code to deply to a targeted build for codepush
appcenter codepush release-react -a aountName/appName -d Production -m --description "CommentHere" -t versionName
I have tried to figure this out…

Okechukwu Eze
- 155
- 1
- 14