Why debug.apk of hello world app is 560MB? #13008
-
(First time trying Tauri Mobile) I created an app w tauri official react template and started to learn. Now i realized It's not a big problem, so just asking for curiosity is it normal? 19x size difference seems weird |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Rust debug builds are generally huge by design because of all the debug symbols etc. You'll see something similar on desktop builds (except windows I guess because there it's 2 files). The reason why the diff is that large is because the apk contains four rust apps (one for each arch). |
Beta Was this translation helpful? Give feedback.
Rust debug builds are generally huge by design because of all the debug symbols etc. You'll see something similar on desktop builds (except windows I guess because there it's 2 files).
The reason why the diff is that large is because the apk contains four rust apps (one for each arch).