v9.2.0
π Expo support
Thanks to @saseungmin
β¨ Expo support in CLI
- bundle/release command for Expo: Generate CodePush bundles using
expo export:embed
command- add
-f, --framework
option to specifyexpo
framework
- add
npx code-push bundle --platform android --framework expo
npx code-push release --binary-version 1.0.0 --app-version 1.0.1 --framework expo
β¨ Expo Config Plugin
- Zero Manual Setup: Automatically modifies native code for both iOS and Android
- Comprehensive warnings for unsupported configurations
Configuration
// app.config.js
export default {
expo: {
plugins: ["@bravemobile/react-native-code-push"],
},
};
Build Process
# Prebuild to apply native changes
npx expo prebuild
What's Changed
- feat(cli): add expo framework support to bundle command by @saseungmin in #73
- feat(expo): Add Expo config plugin for automated CodePush setup by @saseungmin in #74
New Contributors
- @saseungmin made their first contribution in #73
Full Changelog: v9.1.2...v9.2.0