I am porting assimp to kotlin. I'd like to get it ...
# android
e
I am porting assimp to kotlin. I'd like to get it working also on android now. I would like to not have 3 projects (core, desktop wrapper, android wrapper) because the difference is really few lines (mostly replacing all
Files
and
URI
with
Inputstream
). I'd like to have instead a simple
android
branch. My only problem is that I'd need to pass the
AssetManager
down the code to load additional adjacent files. Is there a way to import that with gradle on a normal kotlin desktop library?