questions regarding Microsoft's CodePush service for dynamic code updates to mobile apps. CodePush is part of the Microsoft App Center
Questions tagged [code-push]
236 questions
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
1 answer
Cannot select "Cordova" item when adding app in App center for code push
Good day.
I use appcenter for my cordova app for codepush. Today I wanted to add another android cordova app in appcenter, but when I choose Android or IOS os, there is no "Cordova" item in Platform list. But earlier it was here and I added cordova…

Dmitry Dagadin
- 19
- 2
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 secure can Code Push be for React Native applications?
Does anyone have experience with CODE PUSH (Microsoft APP center) for financial applications? Is CP something that can be secured at a level where malicious code injection is virtually eliminated (from a technical/product perspective)?
The value of…

jfbaro
- 301
- 2
- 10
0
votes
1 answer
Does, new npm packages able to update remotely with code-push-react-native?
I released one apk from PlayStore. Now I want some updates couple of screens. This changes required to use some new libraries. With this new library I'll achieved my requirements. Now I want to update remotely with manual release, using…

Elango
- 272
- 3
- 16
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
0
votes
1 answer
Android App Keeps stopping after i install the codepush plugin
I try to install the codepush plugin and after that i can run on ionic serve but when i run with ionic cordova run android, it install the app in my phone but I can’t open it. Does someone has same issue? My app still works if i dont install the…

Phone Naing Kha
- 11
- 2
0
votes
2 answers
adding code push to react native appcenter app
My react native app is working ok, but now need to add code push,
my question is where to add the
CodePush
On the "App"
Here my code,
const App = () => (
…

manuelBetancurt
- 15,428
- 33
- 118
- 216
0
votes
2 answers
Could not find any React Native Android projects in your branch - Code Push
I am working on a react-native project, application and everything is perfectly working but when I try to configure build on code push it shows something like -
We couldn’t find any React Native Android projects in your branch.
Any help would be…

Rahul Syal
- 545
- 2
- 6
- 21
0
votes
0 answers
How to use Codepush with App center in React-native
I started to use Microsoft App center to improve my CI/CD process developing my react-native app, but I can't understand how the update flow works together with codepush.
I configured 3 branches
dev
staging
release
The current Flow:
I merge a new…

Stevetro
- 1,933
- 3
- 16
- 29
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