Socket
Book a DemoInstallSign in
Socket

@appzung/expo-config-code-push

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appzung/expo-config-code-push

Config plugin to auto configure AppZung CodePush for React Native on prebuild

latest
npmnpm
Version
1.1.1
Version published
Weekly downloads
36
5.88%
Maintainers
1
Weekly downloads
 
Created
Source

@appzung/expo-config-code-push

Expo Config Plugin to auto-configure @appzung/react-native-code-push when the native code is generated (npx expo prebuild).

Versioning

Ensure you use versions that work together!

expoOld archNew arch@appzung/react-native-code-push@appzung/expo-config-code-push
52+10+^1.0.0
52+11+^1.0.0

Expo installation

This package cannot be used in the "Expo Go" app because it requires custom native code.

  • (optional) If your app doesn't target iOS >= 15.5, add the compatible deploymentTarget with expo-build-properties

Note that bare React Native apps can use our module with iOS < 15.5. If you need this for your expo app, please contact us at support@appzung.com.

npx expo install expo-build-properties
{
  "plugins": [
    "...other plugins",
    [
      "expo-build-properties",
      {
        "ios": {
          "deploymentTarget": "15.5"
        }
      }
    ]
  ]
}

Then update the deployment target in your native files with npx expo prebuild.

npx expo install @appzung/react-native-code-push @appzung/expo-config-code-push
{
  "plugins": [
    "...other plugins",
    [
      "@appzung/expo-config-code-push",
      {
        "ios": {
          "CodePushReleaseChannelPublicId": "YOUR_IOS_PUBLIC_ID",
          "CodePushSigningPublicKey": "YOUR_SIGNING_KEY"
        },
        "android": {
          "CodePushReleaseChannelPublicId": "YOUR_ANDROID_PUBLIC_ID",
          "CodePushSigningPublicKey": "YOUR_SIGNING_KEY"
        }
      }
    ]
  ]
}
  • Replace YOUR_ANDROID_PUBLIC_ID and YOUR_IOS_PUBLIC_ID with your public IDs ($ appzung release-channels list).

  • Either replace YOUR_SIGNING_KEY with your Code Signing key, or remove the CodePushSigningPublicKey fields.

  • Rebuild your app as described in the "Adding custom native code" guide.

  • Use AppZung CodePush in your JS code, follow the docs.

Keywords

react

FAQs

Package last updated on 15 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts