This repository was archived by the owner on Aug 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 1+ import java.text.SimpleDateFormat
2+
3+ //
4+ // ConstraintLayout Demo App
5+ // =========================
6+ // A demo application for Android ConstraintLayout with various usage with sample code.
7+ // https://github.com/amardeshbd/android-constraint-layout-cheatsheet
8+ //
9+
110// Top-level build file where you can add configuration options common to all sub-projects/modules.
211
312buildscript {
7685 daggerVersion = ' 2.15' // https://github.com/google/dagger
7786 timberLibraryVersion = ' 4.7.0' // https://github.com/JakeWharton/timber
7887 leakcanaryLibraryVersion = ' 1.5.4' // https://github.com/square/leakcanary/releases
79- flashBarVersion = ' 1.0.1 ' // https://github.com/aritraroy/Flashbar/releases
88+ flashBarVersion = ' 1.0.2 ' // https://github.com/aritraroy/Flashbar/releases
8089}
8190
8291
@@ -89,7 +98,7 @@ static def gitSha() {
8998}
9099
91100static def buildTime () {
92- def df = new java.text. SimpleDateFormat (" EEE, d MMM, yyyy hh:mm aaa z" )
101+ def df = new SimpleDateFormat (" EEE, d MMM, yyyy hh:mm aaa z" )
93102 df. setTimeZone(TimeZone . getTimeZone(" UTC" ))
94103 return df. format(new Date ())
95104}
You can’t perform that action at this time.
0 commit comments