@@ -43,7 +43,7 @@ Once you've created a Play Console developer account, you need to register your
43
43
You can build an Android App Bundle (AAB) to upload to Google Play by running the following command:
44
44
45
45
<CommandTabs
46
- npm = " npm run tauri android build --aab"
46
+ npm = " npm run tauri android build -- -- aab"
47
47
yarn = " yarn tauri android build --aab"
48
48
pnpm = " pnpm tauri android build --aab"
49
49
cargo = " cargo tauri android build --aab"
@@ -70,7 +70,7 @@ that can be used for testing or distribution outside the store.
70
70
To compile APKs for your app you can use the ` --apk ` argument:
71
71
72
72
<CommandTabs
73
- npm = " npm run tauri android build --apk"
73
+ npm = " npm run tauri android build -- -- apk"
74
74
yarn = " yarn tauri android build --apk"
75
75
pnpm = " pnpm tauri android build --apk"
76
76
cargo = " cargo tauri android build --apk"
@@ -82,7 +82,7 @@ By default Tauri builds your app for all supported architectures (aarch64, armv7
82
82
To only compile for a subset of targets, you can use the ` --target ` argument:
83
83
84
84
<CommandTabs
85
- npm = " npm run tauri android build --aab --target aarch64 --target armv7"
85
+ npm = " npm run tauri android build -- -- aab --target aarch64 --target armv7"
86
86
yarn = " yarn tauri android build --aab --target aarch64 --target armv7"
87
87
pnpm = " pnpm tauri android build --aab --target aarch64 --target armv7"
88
88
cargo = " cargo tauri android build --aab --target aarch64 --target armv7"
@@ -97,7 +97,7 @@ This is only useful for testing or distribution outside Google Play, as it reduc
97
97
:::
98
98
99
99
<CommandTabs
100
- npm = " npm run tauri android build --apk --split-per-abi"
100
+ npm = " npm run tauri android build -- -- apk --split-per-abi"
101
101
yarn = " yarn tauri android build --apk --split-per-abi"
102
102
pnpm = " pnpm tauri android build --apk --split-per-abi"
103
103
cargo = " cargo tauri android build --apk --split-per-abi"
0 commit comments