It was other people who implemented Android support, but looking at the compilation process:
$ PATH=$PATH:~/src/android-ndk-r18b/ make clean android
...
...
[armeabi-v7a] StaticLibrary : libhfuzz.a
There's HF_ITER
$ nm obj/local/armeabi-v7a/libhfuzz.a | grep HF_ITER
00000000 T HF_ITER
You can try simply compiling as follows
(android-version-gcc/clang) yourcode.o -o yourapp obj/local/armeabi-v7a/libhfuzz.a
If I'm not mistaken Android build system uses now something like bazel builds, so maybe this is the target you want your apps to depend on ?