What is the status of rclone mount on Android?

ok i have found it here:

https://groups.google.com/d/msg/upspin/wL4sl3dHbxs/BQycKbHmAAAJ

First off, create a directory to store all this crud.

In order to get fusermount on Android, you have to use this repository:

Clone it to external/fuse.

However, their own build scripts don’t build fusermount. You have to
use a custom one; you can use mine here:

You also need an Android.mk:

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
include $(LOCAL_PATH)/external/fuse/lib/Android.mk \
$(LOCAL_PATH)/fusermount.mk

and an Application.mk:

NDK_TOOLCHAIN_VERSION := clang
APP_BUILD_SCRIPT := Android.mk
APP_PLATFORM := android-21
APP_MODULES := libfuse_static fusermount

So your directory right now should look like this:

Application.mk
Android.mk
fusecompress.mk
external/fuse <- android_external_fuse source code

Now you should be able to run:

ndk-build -C . APP_ABI=armeabi-v7a

in order to get a working fusermount binary.