Skip to content
Snippets Groups Projects
Commit c94067f1 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Fix libvlc aar naming

parent de24ae06
No related branches found
No related tags found
No related merge requests found
......@@ -28,9 +28,9 @@ android {
libraryVariants.all { variant ->
def vlcVersion = rootProject.ext.versionName
//Custom APK name
variant.outputs.all { output ->
if (outputFileName != null && outputFileName.endsWith('.aar')) {
outputFileName = "libvlc-${vlcVersion}.aar"
variant.outputs.each { output ->
if (output.outputFileName != null && output.outputFileName.endsWith('.aar')) {
output.outputFileName = "libvlc-${vlcVersion}.aar"
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment