Skip to content

Commit 56aad2c

Browse files
Fix the artifact naming logic
1 parent f23b24c commit 56aad2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ android {
2424
// Rename the artifact to core-<version>.aar, required since gradle 7
2525
libraryVariants.all { variant ->
2626
variant.outputs.all { output ->
27-
outputFileName = "${archivesBaseName}-${defaultConfig.versionName}.aar"
27+
outputFileName = "${archivesBaseName}-${version}.aar"
2828
}
2929
}
3030
}

0 commit comments

Comments
 (0)