Skip to content

Commit

Permalink
fix: add correct script on Android (#596)
Browse files Browse the repository at this point in the history
<!-- Please provide enough information so that others can review your
pull request. -->
<!-- Keep pull requests small and focused on a single change. -->

### Summary

Fixes a regression where `build-android` contained a script for building
iOS app.

### Test plan

`build:android` should contain script for building Android app.
  • Loading branch information
szymonrybczak authored Jul 23, 2024
1 parent 7e00f2b commit bf38b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default async function generateExampleApp({
const iosBuild = [
'npm run mkdist',
'react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist',
SCRIPTS_TO_ADD['build:android'],
SCRIPTS_TO_ADD['build:ios'],
].join(' && ');

Object.assign(scripts, {
Expand Down

0 comments on commit bf38b29

Please sign in to comment.