My Xcoder Gideros project is very customized and thus quite different from the one exported by Gideros Studio. Because of this I keep it checked into Github. The issue I've run into is that
libgideros.a is 200MB, well over the Github 50MB file size limit. To get around this I ignore libgideros.a and copy it over from a DropBox folder. While this works, it's less than ideal.
I'm wondering, what do you all do to manage this, probably something really simple and obvious that I've missed. Thanks in advance.
-Troy
PS -
A breakdown of libgideros.a using the size command on macOS
Comments
Apart from that, you could have build script in your repository that automatically copies libgideros.lua from some fixed local folder into your project before running xcodebuild, or maybe even as part of xcodebuild.
Likes: troysandal