v3.3.1: fixed var name duplication with different value in iOS props

This commit is contained in:
Evan Debenham
2025-12-09 20:14:33 -05:00
committed by Evan Debenham
parent 4fb1515bd6
commit 2ab84ae978
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>${appExecutable}</string>
<key>CFBundleIdentifier</key>
<string>${appPackageName}</string>
<string>${appApplePackageName}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>

View File

@@ -18,7 +18,7 @@ task updateRoboVMProps(){
props.setProperty ('appName', appName)
//append .apple because com.shatteredpixel.shatteredpixeldungeon was taken =(
props.setProperty ('appPackageName', appPackageName + ".apple")
props.setProperty ('appApplePackageName', appPackageName + ".apple")
props.setProperty ('appVersionCode', appVersionCode.toString())
props.setProperty ('appVersionName', appVersionName)