# pbxproj-dom **Repository Path**: mirrors_NativeScript/pbxproj-dom ## Basic Information - **Project Name**: pbxproj-dom - **Description**: pbxproj object model - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-13 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Parser and DOM over the xcode pbxproj [![Build Status](https://travis-ci.org/NativeScript/pbxproj-dom.svg?branch=master)](https://travis-ci.org/NativeScript/pbxproj-dom) Sample usage: ``` import { Xcode } from "pbxproj-dom/xcode"; const xcode = Xcode.open(pbxprojPath); xcode.setManualSigningStyle("MyAppTarget"); xcode.save(); ``` The ultimate goal would be one day the module to support a JavaScript API for Xcode modifications similar to the Cocoapods ruby: ``` post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '3.0' end end end ```