mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
Make apk name more descriptive
This commit is contained in:
parent
1fe1e11e0e
commit
61aa507d23
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user