Documentation Index
Fetch the complete documentation index at: https://mintlify.com/MobileNativeFoundation/rules_xcodeproj/llms.txt
Use this file to discover all available pages before exploring further.
project_options creates a struct of project-level settings that is passed to the project_options attribute of the xcodeproj rule. Use it to control how Xcode formats source files and how the project identifies itself. Load it in your BUILD file with:
Signature
dict containing the provided settings, which is consumed by the xcodeproj rule during project generation.
Parameters
The development region for the project. This maps to the Default:
developmentRegion key in the .pbxproj file and is used by Xcode’s localization tools to determine the base language.development_region must not be an empty string. Passing "" will cause an error at analysis time."en"The number of spaces to use for each indentation level in Xcode’s editor. When set, this overrides the per-user Xcode preference for any file in the project. Leave as
None to use each developer’s own Xcode setting.Default: NoneSets the
ORGANIZATIONNAME attribute in the .xcodeproj file. This value appears in the copyright comment that Xcode inserts into newly created source files (e.g. // Copyright © 2024 My Company. All rights reserved.).Default: NoneThe number of spaces that represent a single tab character in Xcode’s editor. Typically set in conjunction with
uses_tabs. Leave as None to use each developer’s own Xcode setting.Default: NoneWhether Xcode should use tab characters (
True) or spaces (False) for indentation in the project’s source files. Leave as None to use each developer’s own Xcode setting.Default: None