Skip to content
This repository was archived by the owner on Aug 22, 2024. It is now read-only.

Commit c9c7f9f

Browse files
authored
Merge pull request #35 from amardeshbd/update/flash_bar_version
[UPDATE] Flash bar library version and reported a bug on tablet devices.
2 parents 1117cca + 167aa24 commit c9c7f9f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

build.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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

312
buildscript {
@@ -97,7 +106,7 @@ ext {
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

111120
static 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
}

0 commit comments

Comments
 (0)