Skip to content

Commit

Permalink
Added automatic apk renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamuno committed Jun 6, 2019
1 parent b39667e commit db7eb02
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ android {
}
}

android.applicationVariants.all { variant ->
variant.outputs.all {
def appName = "pfa-circuit-training"
outputFileName = appName+"-${variant.name}-v${variant.versionName}.apk"
}
}

repositories {
maven { url "https://jitpack.io" }
}
Expand Down

0 comments on commit db7eb02

Please sign in to comment.