ChengEn
ChengEn

Reputation: 107

Xcode Missing build setting: BUILD_LIBRARY_FOR_DISTRIBUTION

When I was trying to build a framework, I found the build setting BUILD_LIBRARY_FOR_DISTRIBUTION is missing in my project.

Thought may related to particular project, so I start a new one, but still not seen.

enter image description here

To make sure, I download another project from kodeco'sCreating a Framework for iOS tutorial, and the setting option shows!

Why does it not showing on my own project?

enter image description here

Upvotes: 0

Views: 2058

Answers (1)

Oliver Lauridsen
Oliver Lauridsen

Reputation: 21

I had the same issue on my end.

Try the following solution:

Navigate to your General Settings => Build Settings

Make sure you have "All" checked off, instead of the default "Basic", or in your case "Customized"

This solved it for my end. :)

Screenshot of the setting

Upvotes: 2

Related Questions