i've succeeded in compiling vlc for android, now want to reduce the lib.
using --disable option is the simplest way we can try when doing configure.
so i add --disable-access-http parameter in configure.sh:
...
sh $VLC_SOURCEDIR/configure --host=$TARGET_TUPLE --build=x86_64-unknown-linux $EXTRA_PARAMS \
--disable-access-http \
...
then i delete the vlc/android/module directory and re-execute sh compile.sh command.
after that i was surprised to find that the access_http plugin is still can be found through find_modules.sh.
am i wrong or something else needs to do?
can anybody help!