UnityEditor.iOS.Xcode.PBXProject.RemoveAssetTagFromDefaultInstall C# (CSharp) Method

RemoveAssetTagFromDefaultInstall() public method

public RemoveAssetTagFromDefaultInstall ( string targetGuid, string tag ) : void
targetGuid string
tag string
return void
        public void RemoveAssetTagFromDefaultInstall(string targetGuid, string tag)
        {
            string[] removeValues = new string[] { tag };
            this.UpdateBuildProperty(targetGuid, "ON_DEMAND_RESOURCES_INITIAL_INSTALL_TAGS", null, removeValues);
        }
PBXProject