How do I push Unity Games for Mac OSX to the Mac Store? I can’t seem to figure out and have looked every where. I know you have to modify the info.plist and package, but there is no definitive guide!
thanks
NB
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Submit App to Mac Store:
Build in Unity for Mac Intel Only
Show Package Contents of the .app once Compiled from Unity
2.a. Edit Info.plist
2.b. Replace Resources/UnityPlayer.icns with one that is 1024×1024 (you may need icns editor/generator)
2.c. Change permissions on /Data for “everyone” from “no access” to be “Read only”
In Terminal… (you may need entitlements, if so create entitlements xml file and add to codesign command).
codesign -f -s “3rd Party Mac Developer Application: Amit Barman” GolfProHD.app
productbuild –component GolfProHD.app /Applications –sign “3rd Party Mac Developer Installer: Amit Barman” GolfProHD.pkg
Delete the .app file after productbuild has created the .pkg (or the installer test will not work).
sudo installer -store -pkg GolfProHD.pkg -target /
Verify that your app is installed in Applications
Ready to submit the .pkg to iTunes Connect!