Xcode project templates 2
Mon Sep 20 2021 09:47:58 GMT+0000 (UTC)
Saved by @GoodRequest. #xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kind</key> <!--States the template type--> <string>Xcode.Xcode3.ProjectTemplateUnitKind</string> <!--States if the template is a standalone template or a part of template used in a diffrent template. In this case it will be hidden from the template wizzard--> <key>Concrete</key> <true/> <key>Identifier</key> <!--Template ID in the "template space"--> <string>com.goodrequest.CocoaPods</string> <key>Definitions</key> <!--Template variables--> <dict> <key>../Podfile</key> <dict> <key>Path</key> <string>Podfile</string> <key>Group</key> <string>Resources</string> </dict> </dict> <key>Options</key> <!--"USER INPUT" options--> <array> <dict> <key>Identifier</key> <!--Option ID--> <string>cocoapods</string> <key>Name</key> <!--Field title--> <string>CocoaPods</string> <key>Description</key> <!--Field tooltip--> <string>Integrate CocoaPods template</string> <key>SortOrder</key> <!--Sorting priority--> <integer>250</integer> <key>Type</key> <!--Field type--> <string>checkbox</string> <key>Default</key> <!--Default value--> <string>false</string> <key>Units</key> <!--Field outcome--> <dict> <key>true</key> <!--True branch outcome--> <array> <dict> <key>Nodes</key> <!--Files to include if True--> <array> <string>../Podfile</string> </array> </dict> </array> </dict> </dict> <dict> <key>Identifier</key> <!--Option ID--> <string>VERSION</string> <key>Required</key> <!--Required to fill in the field--> <true/> <key>Name</key> <!--Field title--> <string>iOS Min. Version</string> <key>Description</key> <!--Field tooltip--> <string>Minimum supported iOS version</string> <key>Type</key> <!--Field type--> <string>text</string> <key>Default</key> <!--Default value--> <string>13.0</string> <key>NotPersisted</key> <!--Remember last filled in choice--> <true/> </dict> </array> </dict> </plist>
Comments