Replies: 2 comments 3 replies
-
If with
with this:
while http://localhost:1420/ almost works too, as per above. |
Beta Was this translation helpful? Give feedback.
-
I understand these ports in 80 percent (too busy to RTFM the code, sorry), but as per #22 (comment), it is the production port 1858 that shows:
asap, a somewhat ugly as cryptic msg (as NOTHING else be shown, rendered) vs the "development" one error that at least "talks" a bit back to the User. The dev port (whatever it may be) at least shows smth GUI wise too, see above, until that last mile... Aha, while we are at it: #22 (reply in thread) is not material, the huge left frame is, as it disables the typing on the puny mobile's geometries, unless one tries some Desktop View tricks (which also seems not to work much to toggle this). A size drag or even cancel button to wrap it up is needed. (But it does not work for me anyway yet, as per above, so it may be a moot point.) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Your current package version starts to install both in Termux (the most tricky OS) and in prooted Debian there.
In very short for now:
Termux:
rust
- it is too old.~/.rustup/settings.toml
(sic!)wget -c https://static.rust-lang.org/rustup/dist/aarch64-linux-android/rustup-init
andchmod u+x
it.RUSTUP_USE_RUSTLS=0 HOME=/data/data/com.termux/files/home ./rustup-init --default-host aarch64-unknown-linux-gnu --default-toolchain nightly -y
to install Rust 1.91.0-nightly, then add aarch64-linux-android target.apt install just
, or if it does not work: git clonejust
:git clone https://github.com/casey/just
just
using the usual method now, as per the Readme here.Debian in Droid:
cargo install just --locked --root /usr/local
because otherwise it somehow does not leave the/tmp
and is then wrongly linked etc.Update:
Almost there:
apt install xvfb
is needed to pretend to be gtk and:xvfb-run -a just deps dev
Backend works:
while the front-end, alas still as below.
Then use just Kiwi or whatever at the Zygote's level.

ver. 1.2
Beta Was this translation helpful? Give feedback.
All reactions