mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Make apk name more descriptive
This commit is contained in:
@ -68,6 +68,14 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
applicationVariants.all { variant ->
|
||||||
|
variant.outputs.each { output ->
|
||||||
|
def name = output.outputFile.name.replace(variant.buildType.name, "${variant.versionName}")
|
||||||
|
name = name.replace("app", "dolphin")
|
||||||
|
output.outputFile = new File(output.outputFile.parent, name)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
|
Reference in New Issue
Block a user