aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2016-11-16 12:16:09 -0800
committerJake Petroules <jake.petroules@qt.io>2016-11-17 19:38:03 +0000
commit010cfb45a26646ce2858146613e14e50048ac2ed (patch)
treec2be489b66ce1d1975882fc182916b20082793d5
parent0e1f1c909ada3f1cc423b6e7f31ab1a50a22e5df (diff)
Use product.targetName for APK name instead of product.name
Change-Id: I45a94280a65744ebf967eef78277d35204246585 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--share/qbs/modules/Android/sdk/sdk.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/Android/sdk/sdk.qbs b/share/qbs/modules/Android/sdk/sdk.qbs
index 3d498167d..f665835f9 100644
--- a/share/qbs/modules/Android/sdk/sdk.qbs
+++ b/share/qbs/modules/Android/sdk/sdk.qbs
@@ -268,7 +268,7 @@ Module {
"android.nativelibrary-deployed"
]
Artifact {
- filePath: product.name + ".apk.unaligned"
+ filePath: product.targetName + ".apk.unaligned"
fileTags: ["android.apk.unaligned"]
}
prepare: {
@@ -291,7 +291,7 @@ Module {
multiplex: true
inputs: ["android.apk.unaligned"]
Artifact {
- filePath: product.name + ".apk"
+ filePath: product.targetName + ".apk"
fileTags: ["android.apk"]
}
prepare: {