our application has almost 2GB of resources, which...
# random
e
our application has almost 2GB of resources, which we rarely update. Which is the best strategy gradle-wise to have them extern?
g
keep them out of the project and ship separately?
☝️ 1
e
yeah, something like that
g
so keep and ship them separately %) Depends on your deploy process
I don’t think Gradle should be involved, you can just pass path to resources to your app
e
ok
g
If you have a lot of binary resources you can use git lfs and configure deployment to ship app and resources separately
e
@gildor just a question, what did you mean exactly by "path to resources to your app"?
g
It's just an example, because you cannot bundle resources to jar, you need a way how to access them, and probably on dev and prod you have different configurations for that, So you can pass resources path to application to resolve them