Skip to content

Instantly share code, notes, and snippets.

@mdellavo
Created January 10, 2014 16:13
Show Gist options
  • Save mdellavo/8357196 to your computer and use it in GitHub Desktop.
Save mdellavo/8357196 to your computer and use it in GitHub Desktop.
access sdk.dir in gradle
def getSdkDir() {
Properties local = new Properties()
local.load(new FileInputStream("${rootDir}/local.properties"))
return local.getProperty('sdk.dir')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment