From 2135e994de2f79c811946fac5f312f1f9378bab1 Mon Sep 17 00:00:00 2001 From: Joe Bowbeer Date: Mon, 8 Feb 2016 11:11:14 -0800 Subject: [PATCH] Add verbosity to PdTest cleanNative command --- PdTest/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PdTest/build.gradle b/PdTest/build.gradle index 23170dfa..52c51af3 100644 --- a/PdTest/build.gradle +++ b/PdTest/build.gradle @@ -50,15 +50,15 @@ android { tasks.create(name: 'buildNative', type: Exec, description: 'Compile JNI source via NDK') { commandLine getNdkBuildExecutablePath(), + 'V=1', '-C', file('jni').absolutePath, '-j', Runtime.runtime.availableProcessors(), 'all', - 'V=1', 'NDK_DEBUG=1' } tasks.create(name: 'cleanNative', type: Exec, description: 'Clean JNI object files') { - commandLine getNdkBuildExecutablePath(), '-C', file('jni').absolutePath, 'clean' + commandLine getNdkBuildExecutablePath(), 'V=1', '-C', file('jni').absolutePath, 'clean' } clean.dependsOn 'cleanNative'