Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Copyright Key and Value Not in info.plist

I am preparing my first app for submission to the App Store, in Apple's documentation they say to:

Make sure that your information property list file contains a valid value for the Copyright key.

And then show in a picture what they are talking about which can be found here: http://i.imgur.com/V3ZAgUX.png

However, my info.plist does not contain a copyright Key or Value. How do I get one in there, is it even really necessary to have this? Is there a chance apple will reject my app without this?

like image 984
mattman88 Avatar asked Nov 01 '22 01:11

mattman88


1 Answers

Apple Documentation indicates this is needed for Mac apps, but implies thereby that it's not needed for iOS apps.

See: Setting the Copyright Key (Mac) section in: https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/ConfiguringYourApp/ConfiguringYourApp.html

...

NSHumanReadableCopyright (String - macOS). This key contains a string with the copyright notice for the bundle; for example, © 2016, My Company. You can load this string and display it in an About dialog box. The system uses this string in the app’s Info window in Finder.

like image 175
Corbin Miller Avatar answered Nov 12 '22 10:11

Corbin Miller