Skip to content

open-ci-io/xcodeproj_plus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A library for reading and modifying XCode projects.

Usage

A simple usage example:

import 'package:xcodeproj_plus/xcodeproj_plus.dart';

void main() {
  final proj = XCodeProj('path/to/project');
  final target = proj.targets.first;
  final config = target.buildConfigurationList.getByName('Release');
  config.buildSettings['MY_CUSTOM_SETTING'] = 'SOME_VALUE';
  proj.save();
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

A library for reading and modifying XCode projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%