DioxusLabs/dioxus

There are problems when bundling Android with dioxus 0.6.0.

Closed this issue · 2 comments

Problem

When I using the dx bundle --platform android command

Steps To Reproduce

Steps to reproduce the behavior:

  • dx new example
  • sub-template: Bare-Bones
  • Fullstack
  • Router
  • Tailwind CSS
  • cargo add chrono --features serde
  • cargo add futures
  • cargo add reqwest --features json
  • cargo add serde --features derive
  • cargo add serde_json
  • cargo add async_recursion
  • rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android
  • RUST_BACKTRACE=full dx bundle --platform android

Expected behavior

Create a new dioxus App

Screenshots
image

Environment:

  • Dioxus version: 0.6.0
  • Rust version: 1.83.0
  • OS info: MacOS
  • App platform: android

Web, desktop and ios run without problems!

I believe this was fixed and shipped - we were unwrapping in the log consumer which has been resolved.

The actual issue is that we currently don't export the APK yet

#3548