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

Commit 5e8eecd

Browse files
committed
[UPDATE] Flash bar library version and reported a bug on tablet devices.
1 parent 9168343 commit 5e8eecd

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 {
@@ -76,7 +85,7 @@ ext {
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

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

0 commit comments

Comments
 (0)