v1.2.0: added utilities for macOS notarizing

This commit is contained in:
Evan Debenham
2022-02-03 18:26:54 -05:00
committed by Evan Debenham
parent 5c8dbd69a4
commit 6e6a97fddc
4 changed files with 88 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ task updateRoboVMProps(){
//parse out just #.#.# from version name, this is an apple requirement
props.setProperty ('appShortVersionName', (appVersionName =~ /\d+\.\d+\.\d+/)[0])
props.setProperty ('appMainclass', "com.shatteredpixel.shatteredpixeldungeon.ios.IOSLauncher")
props.setProperty ('appMainclass', appPackageName + ".ios.IOSLauncher")
props.setProperty ('appExecutable', "IOSLauncher")
file("robovm.properties").withWriter { props.store(it, "Dynamically generated, do not commit to version control!") }