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
0 answers
Metro error 'TypeError: Transformer is not a constructor' during codepush; unique to my machine
I last ran a successful codepush from my machine 2.5 weeks ago.
I attempted to run a codepush yesterday and ran into the following error:
Welcome to Metro!
Fast - Scalable - Integrated
error index.js: Transformer is not a…

Martha
- 178
- 1
- 11
0
votes
0 answers
CodePush Sync already in progress - how to handle?
I have a problem with code push, i'm running with the following code.
import 'moment/locale/pl';
import {AppRegistry} from 'react-native';
import {name as appName} from './app.json';
import App from './src/App';
import moment from 'moment';
import…

illgresi
- 11
- 2
0
votes
0 answers
React native codepush updates effecting startup time of react native app
My app is opening in 3 seconds on 2gb ram mobiles when there is no codepush implemented in the app, when codepush is present and when codepush downloading the updates, from next restart the app is taking 15 to 20 seconds to open, before showing…
0
votes
0 answers
CodePush ReactNative "auto roll-back" iOS app version after reopen app
on iOS, After modifying some features and stuff in our app we just released both new versions over the air and all goes ok. The app discovers the update accordingly, then installs it and so restarts the app.
Everything was ok until I realize that…

Rohit Suthar
- 2,635
- 1
- 22
- 27
0
votes
0 answers
What is the stategy of a Codepush rollout?
Can anyone elaborate on this as there is no information in the Microsoft documentation.
My theory is that the first X% of users who start the app and qualify for the upgrade (based on the total number of AppCenter users) actually get it.
My…

Thibault Capelli
- 178
- 6
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
Expo Updates Custom Server
I have been trying to implement the custom server for expo updates as explained in this repo for my App
https://github.com/expo/custom-expo-updates-server
The expo-updates-server code I haven't touched, just changed the path in sripts/publish.sh and…

Shiv
- 13
- 6
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
Trying to set up code push, Getting error when trying to save app to appcenter - React Native
Name contains invalid characters ..

Fonty
- 1
0
votes
0 answers
How to convert Bytes to Percentage?
Hi everyone today i'm trying to convert bytes received from update to percentage but no matter the method used i can't do it .
i make a constant codePushDownloadDidProgress were i convert the received bytes in to percentage multiplied by 100 than…

greta calamari
- 71
- 6
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
Does Codepush collects data?
I have added codepush for CI/CD in my react native project but my app is getting rejected on google play console stating this :
We found an issue in the following area(s):
SPLIT_BUNDLE 4: Policy Declaration - Data Safety Section: Device Or Other…

abdemirza
- 629
- 4
- 16
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