Last active
June 23, 2018 08:15
-
-
Save stepango/e29fe779844dbf6ebd0f5f0f42511641 to your computer and use it in GitHub Desktop.
Alternative build dir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// your_project_folder/build.gradle | |
allprojects { | |
if (new File("your_ram_disk_path").exists()) | |
buildDir = "your_ram_disk_path/build/${rootProject.name}/${project.name}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment