https://github.com/appsup-dart/xcodeproj
A library for reading and modifying XCode projects
https://github.com/appsup-dart/xcodeproj
Last synced: 7 months ago
JSON representation
A library for reading and modifying XCode projects
- Host: GitHub
- URL: https://github.com/appsup-dart/xcodeproj
- Owner: appsup-dart
- License: other
- Created: 2020-10-27T08:14:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T15:50:14.000Z (10 months ago)
- Last Synced: 2024-09-10T17:35:54.935Z (10 months ago)
- Language: Dart
- Size: 33.2 KB
- Stars: 10
- Watchers: 4
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
A library for reading and modifying XCode projects.
## Usage
A simple usage example:
```dart
import 'package:xcodeproj/xcodeproj.dart';main() {
var proj = XCodeProj('path/to/project');
var target = proj.targets.first;
var 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][tracker].
[tracker]: https://github.com/appsup-dart/xcodeproj