From f8511c52331be6893eeb581cbc01d48f88774466 Mon Sep 17 00:00:00 2001
From: Gabriel Calero <gcalero1984@gmail.com>
Date: Tue, 19 Jun 2018 21:38:17 -0300
Subject: [PATCH] Debugging gradle script

---
 android/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/android/build.gradle b/android/build.gradle
index 80439b1e5b..2b5fe2a384 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -596,7 +596,7 @@ task zipDumpSymsDebug(type: Zip, dependsOn: runBreakpadDumpSymsDebug) {
     }
     from (breakpadDumpSymsDir.absolutePath)
     archiveName "symbols-${RELEASE_NUMBER}.zip"
-    destinationDir(breakpadDumpSymsDir)
+    destinationDir(new File("${appDir}/build/tmp/"))
     doLast {
         println ("Zipped " + breakpadDumpSymsDir.absolutePath + " into " + breakpadDumpSymsDir)
     }
@@ -610,7 +610,7 @@ task uploadBreakpadDumpSymsRelease(dependsOn: runBreakpadDumpSymsRelease) {
 
 
 task uploadBreakpadDumpSymsDebug(dependsOn: zipDumpSymsDebug) {
-    def p = ['curl', '--data-binary', "@"+new File(breakpadDumpSymsDir, "symbols-${RELEASE_NUMBER}.zip").absolutePath, "\"https://gcalero998.sp.backtrace.io:6098/post?format=symbols&token=d65d0d184789ac40c121952001fd91dfba7e149899b1eeccd68ccffe91dd2fd0\""].execute()
+    def p = ['curl', '--data-binary', "@"+new File("${appDir}/build/tmp/", "symbols-${RELEASE_NUMBER}.zip").absolutePath, "\"https://gcalero998.sp.backtrace.io:6098/post?format=symbols&token=d65d0d184789ac40c121952001fd91dfba7e149899b1eeccd68ccffe91dd2fd0\""].execute()
 }