From 8a3734e017bc8c837b93eee77ed564dfdc4106f9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Tue, 17 Nov 2015 14:19:14 +0100 Subject: [PATCH] Use $buildDir instead of hardcoded build/ --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index edf3911..e7beaac 100644 --- a/build.gradle +++ b/build.gradle @@ -21,14 +21,14 @@ dependencies { // and remove the "compile files" part if you do not // care about the size of the apk smallicu 'com.ibm.icu:icu4j:55.1' - compile files('build/icu4j-55.1.small.jar') { + compile files("$buildDir/icu4j-55.1.small.jar") { builtBy 'makesmallicu' } } task makesmallicu (dependsOn: configurations.smallicu) << { exec { - commandLine "./mksmallicu.sh", "${configurations.smallicu.resolve()[0]}", "build/icu4j-55.1.small.jar" + commandLine "./mksmallicu.sh", "${configurations.smallicu.resolve()[0]}", "$buildDir/icu4j-55.1.small.jar" } } -- 2.43.0