From 0ae986758e514b5f9e57a1138256da4b5c68beff Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 8 Oct 2021 06:53:53 -0700 Subject: [PATCH] Fix android build (#2956) Summary: Following mweststrate's advice on how to fix this. Pull Request resolved: https://github.com/facebook/flipper/pull/2956 Test Plan: Watch the Action. Reviewed By: lblasa Differential Revision: D31502115 Pulled By: passy fbshipit-source-id: 0f6dc73bcfde30fe7e2ee78e58d1c8e6fc16ec29 --- .github/workflows/react-native-example.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/react-native-example.yml b/.github/workflows/react-native-example.yml index e3d73ab50..d208d0790 100644 --- a/.github/workflows/react-native-example.yml +++ b/.github/workflows/react-native-example.yml @@ -58,5 +58,5 @@ jobs: - name: Build React Native Android Example debug app run: | mkdir -p android/app/src/main/assets - yarn react-native bundle --platform android --dev true --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res + yarn react-native bundle --platform android --dev true --entry-file index.native.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res cd android && ./gradlew assembleDebug