From c2879766eba657578b3b7a4c219edeaf0d12651d Mon Sep 17 00:00:00 2001 From: Armand <4831c0@proton.me> Date: Wed, 4 Mar 2026 10:55:40 +0100 Subject: [PATCH] build: run pub get and codegen --- build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sh b/build.sh index 2a50af5..530d7b3 100644 --- a/build.sh +++ b/build.sh @@ -24,6 +24,9 @@ build_app() { echo "Building $APP: version $BUILD_NAME (version code: $VERSION_CODE)" cd "$ROOT/$APP" + flutter pub get + dart run scripts/codegen.dart + flutter build appbundle --build-name="$BUILD_NAME" --build-number="$VERSION_CODE" --verbose }