Skip to content

Commit 728c8d4

Browse files
fix(cli): skip building bundles when using tauri android run (#15473)
1 parent e25f45c commit 728c8d4

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"tauri-cli": "patch:bug"
3+
"@tauri-apps/cli": "patch:bug"
4+
---
5+
6+
Skip building bundles when using `tauri android run`

crates/tauri-cli/src/mobile/android/run.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ pub fn command(options: Options, noise_level: NoiseLevel) -> Result<()> {
103103
split_per_abi: true,
104104
apk: false,
105105
aab: false,
106-
skip_bundle: false,
106+
skip_bundle: true,
107107
open: options.open,
108108
ci: false,
109109
args: options.args,

0 commit comments

Comments
 (0)