1
0
mirror of https://github.com/danog/termux-api.git synced 2024-11-30 04:19:20 +01:00

Add a versionName gradle task

This commit is contained in:
Fredrik Fornwall 2019-05-29 23:30:23 +02:00
parent 1d5a3fe813
commit b871f04beb

View File

@ -27,3 +27,9 @@ android {
dependencies {
implementation 'com.android.support:design:28.0.0'
}
task versionName {
doLast {
print android.defaultConfig.versionName
}
}