We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd0b6e commit 801d4c1Copy full SHA for 801d4c1
2 files changed
build-logic/convention/src/main/kotlin/ru/astrainteractive/gradleplugin/plugin/ApkNamePlugin.kt
@@ -16,7 +16,7 @@ class ApkNamePlugin : Plugin<Project> {
16
if (output is VariantOutputImpl) {
17
val name = projectInfo.name
18
val version = projectInfo.versionString
19
- output.outputFileName.set("${name}_${version}_${variant.name}.apk")
+ output.outputFileName.set("${name}-${target.name}-${version}-${variant.name}.apk")
20
}
21
22
gradle.properties
@@ -8,4 +8,4 @@ project.name=GradlePlugin
8
project.description=GradlePlugin for my kotlin projects
9
project.group=ru.astrainteractive.gradleplugin
10
project.web=https://github.com/makeevrserg/gradle-plugin
11
-project.version.string=2.1.1
+project.version.string=2.1.2
0 commit comments