I need to send my project to someone else so they can create the iOS app. I think I am supposed to do this by exporting my project as a package. But when I import the package it doesn’t contain any of my build settings. What would be the best way to go about doing this?
i don’t think you can save the build settings in a package.
What you can do is include some form of an “installer” script in your package that will get executed as soon as it’s imported. This will use editor scripting APIs to update whatever you need in the build settings to match your settings.
You can take it one step further by creating a “mirror” of your build settings as serializable data in your package, and the “installer” logic will load that and update the build settings based on that.