Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] android build fails with libxml dependency #9560

Open
bburdette opened this issue Apr 24, 2024 · 1 comment
Open

[bug] android build fails with libxml dependency #9560

bburdette opened this issue Apr 24, 2024 · 1 comment
Labels
status: needs triage This issue needs to triage, applied to new issues type: bug

Comments

@bburdette
Copy link

bburdette commented Apr 24, 2024

Describe the bug

Trying to upgrade my app to beta-14; cargo tauri android build --apk -t armv7 fails with libxml2.so.2 not found:

  = note: /nix/store/sqixlxw21vzkwg4sdyz5r73ywpsancjs-androidsdk/libexec/android-sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/linux-x86_64/bin/ld.lld: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory
          clang-17: error: unable to execute command: No such file or directory
          clang-17: error: linker command failed due to signal (use -v to see invocation)

Reproduction

bburdette/tauri-zknotes@d2afc79

build instructions in readme.

Expected behavior

expect it to link, and hopefully run on the android device.

Full tauri info output

[bburdette@HOSS:~/code/zknotes/tauri-zknotes/tauri/src-tauri]$ cargo tauri info
WARNING: no lock files found, defaulting to npm

[⚠] Environment
    - OS: NixOS 24.5.0 X64
    ✔ webkit2gtk-4.1: 2.44.1
    ✔ rsvg2: 2.58.0
    ✔ rustc: 1.77.2 (25ef9e3d8 2024-04-09)
    ✔ cargo: 1.77.2 (e52e36006 2024-03-26)
    ⚠ rustup: not installed!
      If you have rust installed some other way, we recommend uninstalling it
      then use rustup instead. Visit https://rustup.rs/
    ⚠ Rust toolchain: couldn't be detected!
      Maybe you don't have rustup installed? if so, Visit https://rustup.rs/
    - node: 20.12.2
    - npm: 10.5.0

[-] Packages
    - tauri [RUST]: 2.0.0-beta.15
    - tauri-build [RUST]: 2.0.0-beta.12
    - wry [RUST]: 0.39.1
    - tao [RUST]: 0.27.0
    - tauri-cli [RUST]: 2.0.0-beta.12
    - @tauri-apps/api : not installed!
    - @tauri-apps/cli [NPM]: 2.0.0-beta.12

[-] App
    - build-type: bundle
    - CSP: unset
    - frontendDist: static
    - devUrl: http://192.168.88.252:8010/

Stack trace

No response

Additional context

There is non-tauri rust code in this project, in the form of a library containing a web server. When I compile that on its own it doesn't contain libxml dependencies:

[bburdette@HOSS:~/code/zknotes/tauri-zknotes/zknotes/server]$ ldd ../target/debug/zknotes-server
	linux-vdso.so.1 (0x00007ffff7fc8000)
	libgcc_s.so.1 => /nix/store/843dqq10jdkalr2yazaz6drx334visrb-gcc-12.2.0-lib/lib/libgcc_s.so.1 (0x00007ffff5fdf000)
	libm.so.6 => /nix/store/46m4xx889wlhsdj72j38fnlyyvvvvbyb-glibc-2.37-8/lib/libm.so.6 (0x00007ffff5eff000)
	libc.so.6 => /nix/store/46m4xx889wlhsdj72j38fnlyyvvvvbyb-glibc-2.37-8/lib/libc.so.6 (0x00007ffff5d19000)
	/nix/store/46m4xx889wlhsdj72j38fnlyyvvvvbyb-glibc-2.37-8/lib/ld-linux-x86-64.so.2 => /nix/store/46m4xx889wlhsdj72j38fnlyyvvvvbyb-glibc-2.37-8/lib64/ld-linux-x86-64.so.2 (0x00007ffff7fca000)

Here's the cargo build output:


[bburdette@HOSS:~/code/zknotes/tauri-zknotes/tauri/src-tauri]$ ./androidarmv7.sh
    Info detected host target triple "x86_64-unknown-linux-gnu"
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
warning: output filename collision.
The lib target `app_lib` in package `zknotes-app v0.1.0 (/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri)` has the same output filename as the lib target `app_lib` in package `zknotes-app v0.1.0 (/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri)`.
Colliding filename is: /home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libapp_lib.rlib
The targets should have unique names.
Consider changing their names to be unique or compiling them separately.
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
warning: output filename collision.
The lib target `app_lib` in package `zknotes-app v0.1.0 (/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri)` has the same output filename as the lib target `app_lib` in package `zknotes-app v0.1.0 (/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri)`.
Colliding filename is: /home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/libapp_lib.rlib
The targets should have unique names.
Consider changing their names to be unique or compiling them separately.
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
   Compiling wry v0.39.1
   Compiling tauri v2.0.0-beta.15
   Compiling zknotes-app v0.1.0 (/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri)
   Compiling tauri-runtime-wry v2.0.0-beta.12
warning: unused imports: `Callbacks`, `Tokener`
  --> tauri/src-tauri/src/commands.rs:10:46
   |
10 | use zknotes_server_lib::orgauth::endpoints::{Callbacks, Tokener, UuidTokener};
   |                                              ^^^^^^^^^  ^^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default

warning: unused `Result` that must be used
  --> tauri/src-tauri/src/lib.rs:24:11
   |
24 | /           zknotes_server_lib::sqldata::dbinit(
25 | |             config.orgauth_config.db.as_path(),
26 | |             config.orgauth_config.login_token_expiration_ms,
27 | |           );
   | |___________^
   |
   = note: this `Result` may be an `Err` variant, which should be handled
   = note: `#[warn(unused_must_use)]` on by default
help: use `let _ = ...` to ignore the resulting value
   |
24 |           let _ = zknotes_server_lib::sqldata::dbinit(
   |           +++++++

error: linking with `/nix/store/sqixlxw21vzkwg4sdyz5r73ywpsancjs-androidsdk/libexec/android-sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang` failed: exit status: 1
  |
  = note: LC_ALL="C" PATH="/nix/store/8p4667nvv7r733p7pspadmxyq8mb2wcj-rust-mixed/lib/rustlib/x86_64-unknown-linux-gnu/bin:/nix/store/sqixlxw21vzkwg4sdyz5r73ywpsancjs-androidsdk/bin:/nix/store/f6qrq34jwp5rjk4l8d5hqlw000gmiif1-android-sdk-ndk-26.3.11579264/bin:/nix/store/w2wz9jc5dlj3k7isz5fcrfxbzgkb93v7-cargo-watch-8.5.2/bin:/nix/store/apzzxg0gc6ql15bqdd95d9pikg6crhk9-rustfmt-1.77.1/bin:/nix/store/bmjl1gvnqmin47lnhlirfsac7by66kwb-rust-analyzer-2024-04-08/bin:/nix/store/9zh4snslqsrwymlvc9apa6pbfhh9mh4y-sqlite-3.45.2-bin/bin:/nix/store/chsxv0jx2fwhyslf6lm1wfrg42nan4dm-openssl-3.0.13-bin/bin:/nix/store/39nq7p6jcm9m3xqqm99skwmgsqw4pbbg-pkg-config-wrapper-0.29.2/bin:/nix/store/q8if53iflc7dk82mw1y0yqz35y0xp3cg-elm2nix-0.3.1/bin:/nix/store/xm6801mkv4cxp3cxmjw7ivv3vy70nkpi-elm-0.19.1/bin:/nix/store/5zq61p5xda2hwvry7rfp2fh1fvbbn6w9-elm-analyse-0.16.5/bin:/nix/store/rf6xlw6mbim6wrk0z0cwmz79j7xpilr0-elm-doc-preview-5.0.5/bin:/nix/store/bz33icffnbxdam0phylggmmcwirx0f7f-elm-format-0.8.7/bin:/nix/store/kwimhwcg7i40ra9ndppmnz6jvxyw0xhb-elm-live-4.0.2/bin:/nix/store/icaiksfjpyypa3z8avcbkqkyl30xfvmg-elm-test-0.19.1-revision12/bin:/nix/store/xi8d0qm3f6kg1jlj378fin96q5p69fh9-elm-upgrade-0.19.8/bin:/nix/store/fqfng0k2n6d6wnljh53f9r96vw4n6255-elm-xref-4.1.1/bin:/nix/store/8d03haagapwa5qsqdxrv4j9f0qdhq05d-_at_elm-tooling_slash_elm-language-server-2.8.0/bin:/nix/store/bgj5vxz5r2h548qn1ajq2gzcz7kcnj98-elm-verify-examples-5.3.0/bin:/nix/store/9v6y8dghfvzxn8cbhw5djy5jyglp4j7c-elmi-to-json-unstable-2021-07-19/bin:/nix/store/b9872c1b6af3bzg9150rnqffrdccn47i-elm-optimize-level-2-0.3.5/bin:/nix/store/bvyvq17hf1j07dpqr3sr2dycd6l5gjw5-tauri-2.0.0-beta.14/bin:/nix/store/bqxzfsk9r7rdvhkpy5h9wdr3qdp306w0-curl-8.7.1-dev/bin:/nix/store/6sgmnn3bzyknvnp1id6g23cvwwikz3ny-brotli-1.1.0/bin:/nix/store/4r54ps6yyxspxdga20jcd2lgyzsf85kh-libkrb5-1.21.2-dev/bin:/nix/store/x78xm477r9xkal8sa4c90gqzvcsk0prr-libkrb5-1.21.2/bin:/nix/store/my7v5lblif8qkh6fdhfy4nf57kiw6z1m-nghttp2-1.61.0/bin:/nix/store/i206q71aayr4cw63v2p2x0289xp2cg0r-libidn2-2.3.7-bin/bin:/nix/store/nclmahqynkvzi5pf0hhbmfdhagf7id66-libpsl-0.21.5-bin/bin:/nix/store/w8v0zazz8rzfr6fl0wawl42l88462wmh-zstd-1.5.6-bin/bin:/nix/store/snycjiabznrrfnij3qkiklbgxkqv0m83-zstd-1.5.6/bin:/nix/store/04806p3s5nrcs7wildryy8slbhpbnbby-curl-8.7.1-bin/bin:/nix/store/yczkl8j6z2gphc29g3b1nqd244a863h7-wget-1.21.4/bin:/nix/store/hfa0jcamap6fyq1jlfxvn0dhaa3yrv8y-glib-2.78.4-dev/bin:/nix/store/1mccb37pvl03i6hg5g8914r6zjd6n09b-gettext-0.21.1/bin:/nix/store/570h9azi9ys1ds4946zjdk034xp0icqd-glib-2.78.4-bin/bin:/nix/store/6bzgx7161cdycq7jzk5kfq2j304m4b5v-gtk+3-3.24.41-dev/bin:/nix/store/vfr9cxnakcblkbbn2gydvr40sv51xqb6-expat-2.6.2-dev/bin:/nix/store/ax54rbw5r6rj29irllm1bn4qkjg0g2px-dbus-1.14.10-lib/bin:/nix/store/wmx2x7hc0m0szcb7yzlswnylmv2w5qz8-dbus-1.14.10/bin:/nix/store/hl1zm53nn45c7wy5d2168xp99ma6fxgf-cairo-1.18.0-dev/bin:/nix/store/hyycb5lggv29z1h4kc4662wlsdcdq1y7-freetype-2.13.2-dev/bin:/nix/store/1mr1p83pzbcmwqlj7v3cwkq5lbxyszq2-bzip2-1.0.8-bin/bin:/nix/store/n5y5qh10ak0xxmd3yh4h5b3zq25zisrq-libpng-apng-1.6.43-dev/bin:/nix/store/m515gfwfp1ww5kwikbg1vwkn4w6cvkw3-fontconfig-2.15.0-bin/bin:/nix/store/2gg0hai9h98mw28mpxa5sdbqw1cyvgn6-fribidi-1.0.13/bin:/nix/store/2339gpgyjmnr644z0qxdi0095j3k746y-gdk-pixbuf-2.42.10-dev/bin:/nix/store/5zk3svqc96pnjkf9yxwx4vpb5bh0hqzj-libdeflate-1.20/bin:/nix/store/zjhkz2a6wlnis4fmxj8pv41pic025z6m-libjpeg-turbo-3.0.2-bin/bin:/nix/store/v6cqgpxhbcd4bhwvzh22hvy7s2i9j90z-xz-5.4.6-bin/bin:/nix/store/aqa15grzkjqc3zml2hpwcfp0yaq7af5r-libtiff-4.6.0-bin/bin:/nix/store/pqy21w23qvzqd205ilfc9c3birbfy9d4-gdk-pixbuf-2.42.10/bin:/nix/store/h2a0hvrmfzfxfggyfjgwnl3lmdhynm71-harfbuzz-8.4.0-dev/bin:/nix/store/r1kwvbdfqlaqmh6dfx17q5bvdkd8ibjb-graphite2-1.3.14/bin:/nix/store/z0q1f5f7zx0d6xrr126j7c51m0jvwqvg-pango-1.51.2-bin/bin:/nix/store/wfh7w6rfcsnscs7w745pllry2n3wjqcl-wayland-1.22.0-bin/bin:/nix/store/jh4ddz1q5cfmik1cnr0al6fkv5gc9l3p-cups-2.4.7-dev/bin:/nix/store/xksr0jdsq119rsqwbrkb1l89hjh42f5h-cups-2.4.7/bin:/nix/store/m5dpmyr2ryx3qsh9j6llpa8wy3v6imx0-gtk+3-3.24.41/bin:/nix/store/wg39rsz68bvfqjqrs1ab7yqf5qbyr710-libxml2-2.12.6-dev/bin:/nix/store/d4a81nyylpij9kywrq8dwx6xxlsyww1g-libxml2-2.12.6-bin/bin:/nix/store/1rcymmhpw0laglnm1fkfxi6g5jy5h6vj-librsvg-2.58.0/bin:/nix/store/5q886zrg8b9c764hn9by5hw70r53m2a1-webkitgtk-2.44.1+abi=4.1/bin:/nix/store/pv2szazcls952ami2b79rpvb025agg1h-lldb-17.0.6/bin:/nix/store/92njxgwsp23zbirp054rz7v9ls0shjwc-nodejs-20.12.2/bin:/nix/store/0p1pdwhif6pghbqaqfmhf9v7rwp4clf8-alsa-lib-1.2.11/bin:/nix/store/8p4667nvv7r733p7pspadmxyq8mb2wcj-rust-mixed/bin:/nix/store/n8w0vqzagx2nbj43w143chrqhmpl680c-jetbrains-jdk-jcef-17.0.8-b1000.8/bin:/nix/store/ig23ki6sl8dlg3lp0k1l9y9x05wrqs4q-patchelf-0.15.0/bin:/nix/store/4kwk49k8rc8cg8c387kbbjcrl8i0y693-gcc-wrapper-13.2.0/bin:/nix/store/nn152mgpdfcw92b3b03g9kmnlpd9jris-gcc-13.2.0/bin:/nix/store/b93lnii942nnkbpkl6smk8dhv0049di8-glibc-2.39-5-bin/bin:/nix/store/asqa3kfq3maclk7cqqhrjvp7vriw6ahy-coreutils-9.5/bin:/nix/store/zfs2gv7x073znw6b250rgnbij300hva5-binutils-wrapper-2.41/bin:/nix/store/vj57s3h2za2qrfccrvc9b6i7s8mw3ndn-binutils-2.41/bin:/nix/store/asqa3kfq3maclk7cqqhrjvp7vriw6ahy-coreutils-9.5/bin:/nix/store/vf8cjkgwmgd4sb3vkxh6x9iar71s1w1c-findutils-4.9.0/bin:/nix/store/ql4y72l42lrlbk8b4nbfvnc5m0nlp2kk-diffutils-3.10/bin:/nix/store/ard747zf4fkkkqa0pwj3fxp9fhnyfm7p-gnused-4.9/bin:/nix/store/gbrv0fn9a07kmdw2rg22iybdymylw4qc-gnugrep-3.11/bin:/nix/store/1vh7kczjs90fzxd786s7yikvqr1g2ndn-gawk-5.2.2/bin:/nix/store/zs4ajc6bp81c92fj2l5r2d68ra0hmfbb-gnutar-1.35/bin:/nix/store/3fzv6f2c0vxv1zfw8v7baxh4s8qq8r2x-gzip-1.13/bin:/nix/store/1mr1p83pzbcmwqlj7v3cwkq5lbxyszq2-bzip2-1.0.8-bin/bin:/nix/store/fx2yaklnv3h6jx0p07h1bh4vy618pn9s-gnumake-4.4.1/bin:/nix/store/dy2z01kpnxn7dn2kgfdxs4fm8xy9mb89-bash-5.2p26/bin:/nix/store/jmxc8fdl9iwdj5qdg5mq15hz2adbq1yn-patch-2.7.6/bin:/nix/store/v6cqgpxhbcd4bhwvzh22hvy7s2i9j90z-xz-5.4.6-bin/bin:/nix/store/f3ylr5a5w2cla15j2w66n435vwx65xmq-file-5.45/bin:/run/wrappers/bin:/home/bburdette/.nix-profile/bin:/nix/profile/bin:/home/bburdette/.local/state/nix/profile/bin:/etc/profiles/per-user/bburdette/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:/home/bburdette/bin/:/home/bburdette/.cargo/bin/:/home/bburdette/bin/:/home/bburdette/.cargo/bin/" VSLANG="1033" "/nix/store/sqixlxw21vzkwg4sdyz5r73ywpsancjs-androidsdk/libexec/android-sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang" "-Wl,--version-script=/tmp/nix-shell.edduw7/rustcIMLLY0/list" "-Wl,--no-undefined-version" "/tmp/nix-shell.edduw7/rustcIMLLY0/symbols.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.00.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.01.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.02.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.03.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.04.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.05.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.06.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.07.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.08.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.09.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.10.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.11.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.12.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.13.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.14.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.app_lib.6bc32705724c7bbc-cgu.15.rcgu.o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/app_lib.1kwczdpkx46clyfb.rcgu.o" "-Wl,--as-needed" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/target/release/deps" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri/.cargo" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/build/ring-e3453ec911c38142/out" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/build/zstd-sys-8679f76dcc989400/out" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/build/ring-1a6170bc952395b2/out" "-L" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/build/libsqlite3-sys-76f16a950863c9b1/out" "-L" "/nix/store/8p4667nvv7r733p7pspadmxyq8mb2wcj-rust-mixed/lib/rustlib/aarch64-linux-android/lib" "-Wl,-Bstatic" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libzknotes_server_lib-be37d22429d3e54d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libenv_logger-2370251b84018de2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhumantime-3cc9bd08a98fa262.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libquick_error-9bdbeab8b9ed292e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtermcolor-fe2b16a422d0ba64.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtoml-d6d55694616d6b49.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtracing_actix_web-f3d94cbda4e7e4f3.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmutually_exclusive_features-8074a0356572027c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpin_project-5fbf243195ecf4cf.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtimer-2da83a00dac0b036.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libeither-1c9741cfbf0c68bb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libclap-76e657126159643d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libvec_map-ba0db61f078c078b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtextwrap-1d2cdbf287c1e5e2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunicode_width-8ed9c4861c2cd19e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libstrsim-90671b6427c2706a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libatty-01cd2995638db6ce.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libansi_term-74abba978dcaf4b8.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libchrono-88564e328c52299e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libnum_traits-75681b138989df6c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libandroid_tzdata-1cf2b5dda211ea18.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libiana_time_zone-1758ff63df55eddb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libandroid_system_properties-f2d66a55bf6b060f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_multipart-5ce6e753dda2154b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserde_plain-4f3853ba9d390d93.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtempfile-04f564f4fbbbefde.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfastrand-d5fd8c681919c3da.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librustix-7868854c8828c574.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblinux_raw_sys-c8fdd798d833c0e4.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liberrno-424ab4ae60cc97d7.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_files-899d97e56cbe66a3.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhttp_range-cbf4772d3899b0dc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libv_htmlescape-051f438b51949d23.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_cors-9101f597b7e565f9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libawc-52aebe40dec46e8a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_tls-7bbafcdc976ef25b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libimpl_more-dbbdbfba236600db.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwebpki_roots-eb4d03dd4ef4d6ab.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtokio_rustls-064652bcaf155f6e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librustls-36b8208880c3e6b9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwebpki-e5fac12f533741c4.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libring-8a86c8798cdd2df2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libspin-970321a4ece1bf44.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libuntrusted-d4097a8d614984c2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_multipart_rfc7578-e02f23b2a3699eaa.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcommon_multipart_rfc7578-59a9ef873e302634.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmime_guess-f1402fb7c1a5e8be.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunicase-9aeec5c669f64000.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures-d2cf9ba2618c3ffe.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_executor-7bacdbe995d98d66.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libasync_stream-e376dd6ee8f01252.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libzkprotocol-1420db62c763d717.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liborgauth-d8d3dd999d1afd17.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librand-c6069571309c2f85.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librand_core-a8525d55b9f4f839.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librand_core-bb4dd1b1cca312cc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbarrel-5691eb99d4e20d0e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libreqwest-6ffaa1d11765ef77.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librustls_pemfile-972a85023cf20eaa.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhyper_rustls-a60bb806403e8659.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwebpki_roots-085da835007d3de3.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcookie_store-a138dba39855524c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpublicsuffix-7c2cdf9ef53852d6.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpsl_types-6217276bda625b1e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcookie-0db7d930052c5a37.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libipnet-309794db97c4ce9e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtokio_rustls-d95b8394493639f4.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librustls-5d35f8bcc7d5de51.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsct-b484baeb31561268.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwebpki-49fadb4d99608b7f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libring-6235d3d426133cf9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libspin-13c350de003b6abc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libuntrusted-f505ecf8f7b0846a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhyper-122ece895e49cbc5.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwant-e04ebaaa206ef6c9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtry_lock-366dc22bf0091c0c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtower_service-515632d1d378a561.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsync_wrapper-ee4d21bc0156fcdd.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhttp_body-f863279295fec6fc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblettre-ad5eed1d69b71f8c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfastrand-0a4ae4927f04d3f2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libquoted_printable-ab11e8b8b1f8985f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libnom-90debea18e87ef58.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsocket2-8e3300fadc61ca80.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libemail_encoding-f0d4b0e34c12414d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbase64-4d8b02d68bf1128c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libidna-dda357170222bedd.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libemail_address-1bc5b8f5acee0bcc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsimple_error-7b0df7c1a8e54a64.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsha256-2af84084e52dfc5b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhex-12ffd4f730fbd593.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librusqlite-4419a8aa5124638e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfallible_streaming_iterator-3777564c8fc2b28e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfallible_iterator-2c906e0ab47723d2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhashlink-53c1e7d3596abd4f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblibsqlite3_sys-5d25882e4aa16e48.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_session-2e0ab44f95c5272e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_web-b7f6c949a236ec4a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserde_urlencoded-c7693590feae67af.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_server-ed2c3cfa942d4f14.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_router-0c616e07d9c5bd42.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcookie-037d04c93fde6c77.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhkdf-92f086d6b04e120c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhmac-f8ca832b8e9ac6bd.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtime-9fce4a47531420c6.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtime_core-d19132383d041056.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libnum_conv-c918d5c79358aa90.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libderanged-0d0691db5b9651fd.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpowerfmt-9dc5329a76286206.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libaes_gcm-1ae70110bace48f4.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libctr-d170792a9d48eaa5.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libghash-479c2916ecc3f286.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpolyval-718b32f2b26b4d23.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libopaque_debug-a9e99252440fd95d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libuniversal_hash-d0b2e4580462c256.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libaes-450941b319631558.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcipher-e0ce8c286ca0f960.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libinout-1a183c3c5d54b902.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libaead-1ce132a831c5cd2f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbase64-40ce2835fd2be7e0.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_http-4004b2d2ebd2db3c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhttparse-8ea71b6ec2f00f31.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhttpdate-17a541efd35974bb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsha1-2a40c494f4dd5e80.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblocal_channel-3d4694b366b3c5da.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbytestring-755491a9f14959ac.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libencoding_rs-44640566cba397df.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblanguage_tags-6615b0e58dcdc29e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libh2-b22e38c711815741.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libzstd-e9a57a448a4c922c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libzstd_safe-3dbaef94a96d4d9c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libzstd_sys-5be133010dd8577a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libflate2-d4c6b82f8ca72692.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libminiz_oxide-9232f70de83632d2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsimd_adler32-9c7c77fcbbb02f9e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcrc32fast-373eab75937dd13c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_service-b6dbb57e58868a84.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_codec-265dd18b53cb30bf.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbitflags-a43207f83198afc8.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtokio_util-73bf8486a52401ee.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtracing-fca1346beca26890.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtracing_core-d9352bc09e0ac566.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_utils-2a49d239a182344c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblocal_waker-6f2dd2b635f7f394.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libactix_rt-ad16df1bf198f331.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhttp-c6a6ab31ca8b6444.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtauri-13a9d4deae8d992e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libheck-44ab1d12fbc9f5ba.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmime-ad372d3c90cb0117.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libanyhow-778836d1252ac9eb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtauri_runtime_wry-4a1ee13db82451ae.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwry-c3451cf88d77f243.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsha2-d8bfbe8d50fde899.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdigest-ffda21ef66435ad9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsubtle-d0b4238849ea3417.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libblock_buffer-7afd72229544b348.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcrypto_common-5f4dc09f6243fa50.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libgeneric_array-1671fe5558634b5c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtypenum-123df0a9bab3170e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbase64-2a61a020aa625e28.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtao-de64d965e4a76a2d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libndk_context-b2216d75b955a632.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libndk-5c00002f70dfd122.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libndk_sys-7e6f67622ad2452b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libraw_window_handle-d54f2e0d1152259e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libnum_enum-2271b36f6aace329.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcrossbeam_channel-3cf03d4b944ba93b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcrossbeam_utils-be983d9a717ccb3b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libinstant-9cd067e52f7dfddf.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblazy_static-3cdedb22b220459d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libstate-b2671879e5afcfa6.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_util-7645363510d87e4b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_io-24d588c1e224a911.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libslab-c0fb8c216ca4d7e5.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_channel-11b6f45a815cc38f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_sink-16f8981750376243.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_task-098135901185258e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpin_utils-209d381566618c09.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutures_core-f0f9083222751835.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtokio-027457dd2ba913a1.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsignal_hook_registry-dda91a0f91a012ed.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libnum_cpus-5f65e003d4ffaadc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsocket2-04ee5859b28ca41e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmio-084f2bb3be4d13cc.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpin_project_lite-852a592cea356b0a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtauri_runtime-e528c7ec6dfe9e7f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libjni-6b340f1223a85668.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcesu8-a97a23db4fb6a57f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcombine-872e5d7f625d989f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libjni_sys-5179e8cad5b26d88.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdpi-e67cd766725adee8.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhttp-708fb2a55aed0163.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbytes-f77819a730852959.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtauri_utils-0152063ac6a9d5bb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwalkdir-1427eda6f94f9526.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsame_file-2f9b64af53e2d6eb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libinfer-5ad77c147247379e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcfb-5ac241367b1143c2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libuuid-a0e59279aa0a978b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librand-56a101a3d8a8cc73.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librand_chacha-68d7aa5693acf7a2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libppv_lite86-146c6688d9afdc58.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/librand_core-f7d4e906a86d2cdb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfnv-319559966a8c81db.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbrotli-353c51cc223a62c9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbrotli_decompressor-2e26c2ea7f952759.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liballoc_stdlib-205fa054f3cac96f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liballoc_no_stdlib-1da2d584a67867ce.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liburlpattern-14d01cb75c13c95d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunic_ucd_ident-c000021e568a486d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunic_ucd_version-bf0c4d297e349d4a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunic_common-6675bd000eba6edf.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunic_char_property-e12b8a7bb45bd326.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunic_char_range-ff174fbf7400ef18.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libregex-74ac1409473911ed.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libregex_automata-cc96a461aedfe607.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libaho_corasick-ac1e4b7fdb4e2459.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmemchr-341fcba8b12bba16.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libregex_syntax-5cc19e814a2903ae.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcargo_metadata-4174abbd6161603f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcargo_platform-1eab91bf86d71ed1.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcamino-0fbbc9fcabe57b5f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdunce-9602a82137d0d135.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libglob-b646fe32ace58d92.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libkuchikiki-48051e461170a9d4.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libselectors-f0c54e6fdc6a869c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libthin_slice-ffdec4efd1ea7302.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libservo_arc-765da1ff5cf3e051.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libstable_deref_trait-ea9a120ed4ac503b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libnodrop-18454f33de234f3d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfxhash-4dc841b1dc340583.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbyteorder-b02ecfb82eec46c7.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libbitflags-e947d41227e41a3f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcssparser-09bb71ba74347049.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libitoa-f2f5b069df658197.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdtoa_short-1e26decafa0d4858.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdtoa-91fa60130795087f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libphf-0e32005154e7c9d9.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libphf_shared-6e93a5fd31bcf3b7.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmatches-185539e9be9c0b1a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhtml5ever-b451b90d468b25f1.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblog-a6ba46474e769391.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmarkup5ever-c0ac9c1fe6b30c9e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libstring_cache-202f1e4969f1da40.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libprecomputed_hash-cc0b6472c3b5dad8.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libparking_lot-b0eb574cf547dd15.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libparking_lot_core-8d316972db878bd2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsmallvec-912a83f63284fc7f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblock_api-d0cc551259b014b1.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libscopeguard-557eb1c340471734.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libphf-e3b34605058b5e23.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libphf_shared-54d1fe00ae7fd8a1.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtendril-9cac11eccf4879b3.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libutf8-430743c16fbfc583.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libfutf-e70eb800017d118d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdebug_unreachable-d32feace31a6ae9c.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libmac-df2de5a93a65f7b7.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libjson_patch-89aa1a96a4724f1a.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtreediff-fd1803a43781b961.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserde_with-03c16d8e0113f77f.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libphf-78d8b7305dd45230.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libphf_shared-c1b0752e9b6c1f41.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsiphasher-3ceaecaf1fadcc80.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtoml-e0f6eb8c74039457.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtoml_edit-b778db6b97df0611.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserde_spanned-eb7a53dfb7051e56.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libindexmap-a49c6774dea1b6f3.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libequivalent-b16f72915049e300.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhashbrown-afaf6d8a701a08aa.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libahash-23c90769ef999431.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libgetrandom-acb5fef151cafbcd.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liblibc-a8c460bdf7385369.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libonce_cell-5360602a6375d5a8.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libcfg_if-00f378473a5539e0.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libzerocopy-da17c86192715b35.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liballocator_api2-bb488232cf7b7610.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libwinnow-431d4158fd10fce2.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtoml_datetime-1bcc8556109a02ab.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libquote-1d18e845bb03e780.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libproc_macro2-7f3f5487d1c45382.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunicode_ident-0e208672cc5aff0c.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libproc_macro-dc1a794c2c95e5a6.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libschemars-b8f42b4bc5b53a51.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libdyn_clone-e63cbcc1f77153f3.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libindexmap-15b3bb0914a32d53.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libhashbrown-8628a9af5696341e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libthiserror-e3c5b41c7326f365.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libsemver-ae287ec5c9cd0b85.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserialize_to_javascript-0843d763e9780e9d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libraw_window_handle-625b1ba22c08b409.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/liburl-25296c304b74dbe0.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libidna-32a54668023c9690.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunicode_normalization-64620433b0c1121b.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtinyvec-4d18fe951f2cd5a0.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libtinyvec_macros-3b263e586dc503d8.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libunicode_bidi-e357ba1d906f3a1d.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libform_urlencoded-6bd24c8a646abf38.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libpercent_encoding-917eb8c5317a3dfb.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserde_json-2af154fae94b7c55.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libitoa-0e12310659797d07.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libryu-75dd06e77a03650e.rlib" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libserde-632a92097ff2d5ef.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libstd-e655ee9d88ac1c8b.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libpanic_unwind-5ba0f547e8a0fdbc.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libobject-3a69a51e313a132b.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libmemchr-b3468ebe8ea51d54.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libaddr2line-9970585fc4056d49.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libgimli-e19deb5cd35f9b59.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/librustc_demangle-747852486487d564.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libstd_detect-476b641b8fe90b1e.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libhashbrown-754e1b9cb34a6ba0.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/librustc_std_workspace_alloc-3eb4e454e1391abe.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libminiz_oxide-ad8ac4321b159d97.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libadler-a5cc13dc2ff920a4.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libunwind-cf6a05539087b0d1.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libcfg_if-a33e086295d8e7fc.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/liblibc-9aa5fa6809aa782a.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/liballoc-e65a26bfcf327945.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/librustc_std_workspace_core-fa66ee91dcc7972e.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libcore-e62895567f984ad6.rlib" "/nix/store/qahh2i3dkg9qmwzvzc6wfxq0mblvwb6f-rust-std-stable-2024-04-09/lib/rustlib/aarch64-linux-android/lib/libcompiler_builtins-c48d254c4383960c.rlib" "-Wl,-Bdynamic" "-landroid" "-ldl" "-llog" "-lunwind" "-ldl" "-lm" "-lc" "-Wl,--eh-frame-hdr" "-Wl,-z,noexecstack" "-L" "/nix/store/8p4667nvv7r733p7pspadmxyq8mb2wcj-rust-mixed/lib/rustlib/aarch64-linux-android/lib" "-o" "/home/bburdette/code/zknotes/tauri-zknotes/target/aarch64-linux-android/release/deps/libapp_lib.so" "-Wl,--gc-sections" "-shared" "-Wl,-z,relro,-z,now" "-Wl,-O1" "-nodefaultlibs" "-landroid" "-llog" "-lOpenSLES"
  = note: /nix/store/sqixlxw21vzkwg4sdyz5r73ywpsancjs-androidsdk/libexec/android-sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/linux-x86_64/bin/ld.lld: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory
          clang-17: error: unable to execute command: No such file or directory
          clang-17: error: linker command failed due to signal (use -v to see invocation)


warning: `zknotes-app` (lib) generated 2 warnings
error: could not compile `zknotes-app` (lib) due to 1 previous error; 2 warnings emitted
    Error `Failed to run `cargo build`: command ["cargo", "build", "--package", "zknotes-app", "--manifest-path", "/home/bburdette/code/zknotes/tauri-zknotes/tauri/src-tauri/Cargo.toml", "--target", "aarch64-linux-android", "--features", "tauri/custom-protocol tauri/rustls-tls", "--lib", "--release"] exited with code 101
@bburdette bburdette added status: needs triage This issue needs to triage, applied to new issues type: bug labels Apr 24, 2024
@bburdette
Copy link
Author

bburdette commented Apr 27, 2024

Thought I'd try starting fresh. Recreated my projects src-tauri folder with cargo tauri init, and then remade the gen/ subdir with cargo tauri android init. Still getting that libxml.so.2 link error, but without any of my own rust code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: needs triage This issue needs to triage, applied to new issues type: bug
Projects
None yet
Development

No branches or pull requests

1 participant