We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 170fa84 commit f5ffe1eCopy full SHA for f5ffe1e
build-artifacts/project-template-gradle/build.gradle
@@ -87,6 +87,10 @@ def renameResultApks (variant) {
87
def name
88
variant.outputs.each { output ->
89
def apkDirectory = output.packageApplication.outputFile.parentFile
90
+ def abiName = "";
91
+ if(output.getFilter(com.android.build.OutputFile.ABI)) {
92
+ abiName = "-" + output.getFilter(com.android.build.OutputFile.ABI);
93
+ }
94
def apkNamePrefix = rootProject.name + "-" + variant.buildType.name
95
name = apkNamePrefix + ".apk"
96
output.packageApplication.outputFile = new File(apkDirectory, name);
0 commit comments