I'm working on to make android application with react-native and expo. I'm using library to render some 3d object.
.obj format file need to be in android/app/src/main/assets to use that library.
I can load pictures something like .jpg, .png but .obj.
I don't control the android folder with git because it creates too much different files every time. (git ignored) expo-file-system library doesn't save the file in exact address that I want(android/app/src/main/assets). If there is a any way to save file with that library, please tell me.
So I created assets folder after expo build android folder. Then I put .obj file manually(copy and paste) with my self. Do I have to create folder manually whenever expo builds android folder?
And even I put my file in assets folder, the file is not showing after eas build ..... Please help