Skip to content

Commit 1e1970f

Browse files
committed
1. Added method to get current date time in given format.
2. Updated library version.
1 parent 632c505 commit 1e1970f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
defaultConfig {
1111
minSdkVersion 19
1212
targetSdkVersion 28
13-
versionCode 34 // this indicates the number of releases of library
14-
versionName "1.3.6" // this indicates the current version of library
13+
versionCode 35 // this indicates the number of releases of library
14+
versionName "1.3.61" // this indicates the current version of library
1515
}
1616

1717
buildTypes {

app/src/main/java/com/amit/utilities/DateTimeUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class DateTimeUtils
3030
*
3131
* @return - date or date time returned
3232
**/
33-
private static String getCurrentDateTime(String inDateTimeFormat)
33+
public static String getCurrentDateTime(String inDateTimeFormat)
3434
{
3535
if (inDateTimeFormat != null && inDateTimeFormat.length() != 0)
3636
{

0 commit comments

Comments
 (0)