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 {
97106 daggerVersion = ' 2.15' // https://github.com/google/dagger
98107 timberLibraryVersion = ' 4.7.0' // https://github.com/JakeWharton/timber
99108 leakcanaryLibraryVersion = ' 1.5.4' // https://github.com/square/leakcanary/releases
100- flashBarVersion = ' 1.0.1 ' // https://github.com/aritraroy/Flashbar/releases
109+ flashBarVersion = ' 1.0.2 ' // https://github.com/aritraroy/Flashbar/releases
101110}
102111
103112//
@@ -109,7 +118,7 @@ static def gitSha() {
109118}
110119
111120static def buildTime () {
112- def df = new java.text. SimpleDateFormat (" EEE, d MMM, yyyy hh:mm aaa z" )
121+ def df = new SimpleDateFormat (" EEE, d MMM, yyyy hh:mm aaa z" )
113122 df. setTimeZone(TimeZone . getTimeZone(" UTC" ))
114123 return df. format(new Date ())
115124}
You can’t perform that action at this time.
0 commit comments