@@ -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