Skip to content

Commit 343ad22

Browse files
fix: update Tauri CLI syntax for --aab flag
Tauri CLI v2 uses boolean flags without values. Changed --aab true to just --aab. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4e6c67b commit 343ad22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fastlane/Fastfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ platform :android do
461461
UI.success("Updated tauri.conf.json: v#{app_version} (build #{build_number})")
462462

463463
# Build Android app bundle using Tauri CLI
464-
sh("cd #{ROOT_DIR}/src-tauri && npx tauri android build --aab true")
464+
sh("cd #{ROOT_DIR}/src-tauri && npx tauri android build --aab")
465465

466466
# Upload to Play Store (track from env var, default: alpha)
467467
track = ENV['GOOGLE_PLAY_TRACK'] || "alpha"
@@ -500,7 +500,7 @@ platform :android do
500500
UI.success("Updated tauri.conf.json: v#{app_version} (build #{build_number})")
501501

502502
# Build Android app bundle using Tauri CLI
503-
sh("cd #{ROOT_DIR}/src-tauri && npx tauri android build --aab true")
503+
sh("cd #{ROOT_DIR}/src-tauri && npx tauri android build --aab")
504504

505505
# Upload to Play Store (track from env var, default: internal)
506506
track = ENV['GOOGLE_PLAY_TRACK'] || "internal"
@@ -539,7 +539,7 @@ platform :android do
539539
UI.success("Updated tauri.conf.json: v#{app_version} (build #{build_number})")
540540

541541
# Build Android app bundle using Tauri CLI
542-
sh("cd #{ROOT_DIR}/src-tauri && npx tauri android build --aab true")
542+
sh("cd #{ROOT_DIR}/src-tauri && npx tauri android build --aab")
543543

544544
# Upload to Play Store (track from env var, default: production)
545545
track = ENV['GOOGLE_PLAY_TRACK'] || "production"

0 commit comments

Comments
 (0)