@@ -43,7 +43,7 @@ Once you've created a Play Console developer account, you need to register your
4343You can build an Android App Bundle (AAB) to upload to Google Play by running the following command:
4444
4545<CommandTabs
46- npm = " npm run tauri android build --aab"
46+ npm = " npm run tauri android build -- -- aab"
4747 yarn = " yarn tauri android build --aab"
4848 pnpm = " pnpm tauri android build --aab"
4949 cargo = " cargo tauri android build --aab"
@@ -70,7 +70,7 @@ that can be used for testing or distribution outside the store.
7070To compile APKs for your app you can use the ` --apk ` argument:
7171
7272<CommandTabs
73- npm = " npm run tauri android build --apk"
73+ npm = " npm run tauri android build -- -- apk"
7474 yarn = " yarn tauri android build --apk"
7575 pnpm = " pnpm tauri android build --apk"
7676 cargo = " cargo tauri android build --apk"
@@ -82,7 +82,7 @@ By default Tauri builds your app for all supported architectures (aarch64, armv7
8282To only compile for a subset of targets, you can use the ` --target ` argument:
8383
8484<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"
8686 yarn = " yarn tauri android build --aab --target aarch64 --target armv7"
8787 pnpm = " pnpm tauri android build --aab --target aarch64 --target armv7"
8888 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
9797:::
9898
9999<CommandTabs
100- npm = " npm run tauri android build --apk --split-per-abi"
100+ npm = " npm run tauri android build -- -- apk --split-per-abi"
101101 yarn = " yarn tauri android build --apk --split-per-abi"
102102 pnpm = " pnpm tauri android build --apk --split-per-abi"
103103 cargo = " cargo tauri android build --apk --split-per-abi"
0 commit comments