Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions formulus/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,13 @@ android {
applicationVariants.all { variant ->
variant.outputs.all { output ->
def versionName = variant.versionName
def versionCode = variant.versionCode
def versionCode = output.versionCode
def buildType = variant.buildType.name
def date = new Date().format('yyyyMMdd')
def abi = output.getFilter(com.android.build.OutputFile.ABI)
def abiSuffix = abi != null ? "-${abi}" : ""

outputFileName = "formulus-v${versionName}-${versionCode}-${buildType}-${date}.apk"
outputFileName = "formulus-v${versionName}-${versionCode}${abiSuffix}-${buildType}-${date}.apk"
}
}

Expand Down
Loading