Android build can't find directories that are symbolically linked?

I’m trying to make a Enterprise Android native build of our previously Corona Pro app.  We have directories that are symbolically linked (to share common assets and code amongst different apps) which build/work fine when built with the Corona sdk.  When I tried to build the app with Enterprise, the build would succeed, but the app would crash because it couldn’t find the assets that were in those symlinked dirs.  When I hard copied the dirs/assets, the app would work fine.  Is there a way to get the build to work with symlinked dirs?

Thanks,

Kenric

I had the same issues and never resolved it. Added some flags to “Other Linker Files” in Xcode and I remember adding some extra run scripts as well. Felt like the right direction but just gave up after a while.

Actually, we started using git subtree to replace my habits with symlinks. Now all our project dependencies are organized in a more proper way and any dependencies I would normally symlink are pulled from the repo.

I had the same issues and never resolved it. Added some flags to “Other Linker Files” in Xcode and I remember adding some extra run scripts as well. Felt like the right direction but just gave up after a while.

Actually, we started using git subtree to replace my habits with symlinks. Now all our project dependencies are organized in a more proper way and any dependencies I would normally symlink are pulled from the repo.