Created
August 2, 2017 17:45
-
-
Save jasonwyatt/c1cad4bd1183b30f59eefeb912720f99 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def getAaptPath = { -> | |
def sdkDir = android.sdkDirectory | |
def buildToolsDir = new File(sdkDir, "build-tools") | |
def versions = buildToolsDir.list() | |
def latestBuildToolsDir = new File(buildToolsDir, versions[-1]) | |
return "${new File(latestBuildToolsDir, "aapt").absoluteFile}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment