Can I have separate gradle.properties for CI and AndroidStudio?

Viewed 1192

Currently, I have one gradle.properties file. It configured specifically for CI with low available memory, because otherwise CI will crash

org.gradle.jvmargs=-Xmx1500m -XX:MaxPermSize=512m

However, when I make builds on the local machine it is very slow and local machine allows more memory use. Can I have separate gradle.properties for CI and AndroidStudio?

1 Answers
Related