From 58c23c0a0e780f987b3361e21ee2ee56a52d7c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Tue, 29 Mar 2016 17:57:21 +0100 Subject: [PATCH] Fix binaryDeps with new app folder Little remaining breakage in our main build.gradle. Went unnoticed because we rarely use this. And hopefully we can get rid of it soon. --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6722e61ab..9dc0b5cc2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -98,10 +98,10 @@ if (!hasProperty('sourceDeps')) { compile project(':extern:zipsigner') } - task binaryDeps(type: Copy, dependsOn: ':F-Droid:prepareReleaseDependencies') { + task binaryDeps(type: Copy, dependsOn: ':app:prepareReleaseDependencies') { enabled = project.hasProperty('sourceDeps') - description = "Copies .jar and .aar files from subproject dependencies in extern/ to F-Droid/libs. Requires the sourceDeps property to be set (\"gradle -PsourceDeps binaryDeps\")" + description = "Copies .jar and .aar files from subproject dependencies in extern/ to app/libs. Requires the sourceDeps property to be set (\"gradle -PsourceDeps binaryDeps\")" from('../extern/') { include 'support-v4-preferencefragment/build/outputs/aar/support-v4-preferencefragment-release.aar'