From 9d8f476174408789fb42f03300425678decb8e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 6 Nov 2015 11:04:14 +0100 Subject: [PATCH] playback/player: Revert "android: Fix Windows build of the app" This reverts commit 5d8c1868beec85ac02bcc6e0bfd0ad9dbb99a3b8. The gradle based build system has various problems currently. --- playback/player/android/app/build.gradle | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/playback/player/android/app/build.gradle b/playback/player/android/app/build.gradle index 18e68bd205..6039b5bd7c 100644 --- a/playback/player/android/app/build.gradle +++ b/playback/player/android/app/build.gradle @@ -1,5 +1,3 @@ -import org.apache.tools.ant.taskdefs.condition.Os - apply plugin: 'com.android.application' android { @@ -59,12 +57,7 @@ android { environment PATH: "${System.getenv("PATH")}${File.pathSeparator}${ndkExtraPath}" } - // Enable V=1 for debugging messages. - if (Os.isFamily(Os.FAMILY_WINDOWS)) { - commandLine "${ndkDir}/ndk-build.cmd", '-C', file('src/main/jni').absolutePath //, 'V=1' - } else { - commandLine "${ndkDir}/ndk-build", '-C', file('src/main/jni').absolutePath //, 'V=1' - } + commandLine "${ndkDir}/ndk-build", '-C', file('src/main/jni').absolutePath //, 'V=1' // Enable V=1 for debugging messages. } }