updated version

This commit is contained in:
Mariotaku Lee 2015-03-29 15:36:51 +08:00
parent 344136e7bd
commit 593027bad0
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,7 @@ android {
applicationId "org.mariotaku.twidere"
minSdkVersion 14
targetSdkVersion 22
versionCode 99
versionCode 100
versionName "0.3.0"
multiDexEnabled true
}
@ -39,6 +39,10 @@ android {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm")
versionNameSuffix String.format(" (dev %s)", format.format(new Date()))
}
release {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd")
versionNameSuffix String.format(" (dev %s)", format.format(new Date()))
}
}
}