Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

PBXProject.AddCapability

Declaration

public bool AddCapability(string targetGuid, iOS.Xcode.PBXCapabilityType capability, string entitlementsFilePath, bool addOptionalFramework);

Parameters

targetGuid The GUID of the target, such as the one returned by GetUnityFrameworkTargetGuid.
capability The capability to enable.
addOptionalFramework Set this to true to indicate that this capability requires additional frameworks. Set it to false if no additional frameworks are required.
entitlementsFilePath Path to the entitlements file to be used for this capability. Information regarding the contents of entitlements files can be found in Apple Documentation

Returns

bool True if the capability was successfully added, and false otherwise.

Description

Adds a target capability to the Xcode project. This enables behavior based on the capability type. Some capabilities require additional setup within Xcode. For more control over the specific settings of capability, use the ProjectCapabilityManager class.