From 89e3292ced79c04fa75cea7e20c9a26731d2f3aa Mon Sep 17 00:00:00 2001 From: Mauricio Colli Date: Fri, 13 Mar 2020 20:10:37 -0300 Subject: [PATCH] Move code with lower priority to the bottom of the file --- app/build.gradle | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index b4df55d4e..c76553165 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,24 +3,6 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' - -static String getGitWorkingBranch() { - try { - def gitProcess = "git rev-parse --abbrev-ref HEAD".execute() - gitProcess.waitFor() - if (gitProcess.exitValue() == 0) { - return gitProcess.text.trim() - } else { - // not a git repository - return "" - } - } catch (IOException ignored) { - // git was not found - return "" - } -} - - android { compileSdkVersion 28 buildToolsVersion '28.0.3' @@ -143,3 +125,19 @@ dependencies { implementation "io.noties.markwon:core:${markwonVersion}" implementation "io.noties.markwon:linkify:${markwonVersion}" } + +static String getGitWorkingBranch() { + try { + def gitProcess = "git rev-parse --abbrev-ref HEAD".execute() + gitProcess.waitFor() + if (gitProcess.exitValue() == 0) { + return gitProcess.text.trim() + } else { + // not a git repository + return "" + } + } catch (IOException ignored) { + // git was not found + return "" + } +} \ No newline at end of file