Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Fixed release apk naming.
Browse files Browse the repository at this point in the history
Changed version to v0.1.0 (it's an alpha).
  • Loading branch information
d4rken committed Sep 3, 2016
1 parent eb50f99 commit e18b530
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
compileSdkVersion 24
buildToolsVersion "24.0.2"

def versionMajor = 1
def versionMinor = 0
def versionMajor = 0
def versionMinor = 1
def versionPatch = 0
def versionBuild = 0

Expand Down Expand Up @@ -54,7 +54,7 @@ android {
variant.outputs.each { output ->
def file = output.outputFile
//noinspection GroovyAssignabilityCheck
output.outputFile = new File(file.parent, "rAndroid_AppStore-v" + defaultConfig.versionName + "(" + defaultConfig.versionCode + ")-" + variant.buildType.name.toUpperCase() + "-" + gitSha + ".apk")
output.outputFile = new File(file.parent, "rAndroid_AppStore-v" + defaultConfig.versionName + "(" + defaultConfig.versionCode + ")-" + variant.buildType.name.toUpperCase() + "-" + gitSha() + ".apk")
}
}
}
Expand Down

0 comments on commit e18b530

Please sign in to comment.