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.
This commit is contained in:
Daniel Martí 2016-03-29 17:57:21 +01:00
parent d5456e1bbf
commit 58c23c0a0e

View File

@ -98,10 +98,10 @@ if (!hasProperty('sourceDeps')) {
compile project(':extern:zipsigner') compile project(':extern:zipsigner')
} }
task binaryDeps(type: Copy, dependsOn: ':F-Droid:prepareReleaseDependencies') { task binaryDeps(type: Copy, dependsOn: ':app:prepareReleaseDependencies') {
enabled = project.hasProperty('sourceDeps') 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/') { from('../extern/') {
include 'support-v4-preferencefragment/build/outputs/aar/support-v4-preferencefragment-release.aar' include 'support-v4-preferencefragment/build/outputs/aar/support-v4-preferencefragment-release.aar'