Merge branch 'fix-build-timestamp' into 'master'

Make build timestamp command compatible with old versions of Git

See merge request akwizgran/briar!811
This commit is contained in:
Torsten Grote
2018-05-21 12:47:47 +00:00

View File

@@ -246,7 +246,7 @@ android {
buildConfigField "String", "GitHash",
"\"${getStdout(['git', 'rev-parse', '--short=7', 'HEAD'], 'No commit hash')}\""
buildConfigField "Long", "BuildTimestamp",
"${getStdout(['git', 'log', '-n', '1', '--date=unix', '--format=%cd'], 0)}000L"
"${getStdout(['git', 'log', '-n', '1', '--format=%ct'], 0)}000L"
}
buildTypes {