I want to make an Android app which can convert .OBJ files into .GLB files.
I've researched this a fair bit but I haven't yet found any library that I'm confident I can use in an Android app for .OBJ to .GLB conversion. I had initially thought that the Assimp library was going to be the best bet: http://cms.assimp.org/index.php. Having looked more closely, however .GLB seems only to be listed as an import format and not as an export format: https://github.com/assimp/assimp So that presumably that means I can use Assimp to convert from .GLB to another format but not into .GLB from another format.
I'd be most grateful for any suggestions on alternative strategies that might be worth investigating. There must surely be some solution to this, but I can't immediately see what it could be!