35
loading...
This website collects cookies to deliver better user experience
$ npm install -g appcenter-cli
$ appcenter login
$ appcenter apps list
d.erdenezaya-gmail.com/example-app-android
d.erdenezaya-gmail.com/example-app-ios
// apps previously created on the appcenter console look like this
// Instead of d.erdenezaya-gmail, there is an organization that created a username or project.
$ appcenter codepush deployment list -k --app d.erdenezaya-gmail.com/example-app-android
$ appcenter codepush deployment list -k --app d.erdenezaya-gmail.com/example-app-ios
import codePush from "react-native-code-push";
class MyApp extends Component {
}}
MyApp = codePush (MyApp)
$ appcenter apps list
d.erdenezaya-gmail.com/example-app-android
d.erdenezaya-gmail.com/example-app-ios
// apps previously created on the appcenter console look like this
// Instead of d.erdenezaya-gmail, there will be a name of organization or username that created the project.
// Staging Release (android)
$ appcenter codepush release-react --mandatory -a d.erdenezaya-gmail.com/example-app-android -d Staging
// Staging Release (ios)
$ appcenter codepush release-react --mandatory -a d.erdenezaya-gmail.com/example-app-ios -d Staging
// For production release, just change -d Production.