14

When I examined settings of a target in Xcode 11.1 (accessed when clicking on a project in the Project navigator sidebar and then clicking on an executable target), I noticed a new expandable section called "Development Assets", which wasn't present in Xcode 10. I also can't find any documentation about it or mentions in release notes.

Development Assets section

Has anyone discovered yet what's the purpose of this section, what's the best use case for it, how to use it, and maybe some documentation written either by Apple or anyone in the community?

Max Desiatov
  • 3,514
  • 2
  • 40
  • 49

1 Answers1

9

It's a way of adding assets to your project that won't be delivered in production but will be available during development. This includes Asset catalogs and other resources. As mentioned these won't be added to the app bundle when the project is Archived.

See WWDC 2019 Mastering Xcode Previews.

trojanfoe
  • 116,099
  • 18
  • 197
  • 233