xcode_modify_plist
Update specific values in a plist file by specifying the file path, key, and new value. Streamline iOS/macOS project configurations directly through programmatic access to Xcode functionality.
Instructions
Modify a value in a plist file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Plist key to modify | |
plist_path | Yes | Path to the plist file | |
value | Yes | New value for the key |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Plist key to modify",
"type": "string"
},
"plist_path": {
"description": "Path to the plist file",
"type": "string"
},
"value": {
"description": "New value for the key",
"type": "string"
}
},
"required": [
"plist_path",
"key",
"value"
],
"type": "object"
}