diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle index 02031b9e1..1f813d092 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,18 +15,6 @@ android { versionCode 3030095 versionName "3.3.0" - def commit = "" - try { - def hashStdOut = new ByteArrayOutputStream() - exec { - commandLine "git", "rev-parse", "--short", "HEAD" - standardOutput = hashStdOut - } - commit = hashStdOut.toString().trim() - } catch (Exception ignore) { - } - buildConfigField "String", "COMMIT_HASH", ('"' + (commit.isEmpty() ? "Unknown commit" : commit) + '"') - javaCompileOptions { annotationProcessorOptions { arguments = [eventBusIndex: 'de.danoeh.antennapod.ApEventBusIndex'] |