mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-06 01:09:30 +00:00
48556bd051
* xcconfig Support * Added supporting an xcconfig file so that multiple users can build/work with the project without needing to change signing info * Added a template xcconfig file to be shared in repo (your xcconfig file is never committed to Git repo) * Updated README * Ignore xcconfig File * Add the users xcconfig file to .gitignore * Update README.md * Update README.md as per review suggestions * Add release config Co-authored-by: Thomas Ricouard <ricouard77@gmail.com>
14 lines
441 B
XML
14 lines
441 B
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>com.apple.security.application-groups</key>
|
|
<array>
|
|
<string>group.$(BUNDLE_ID_PREFIX).IceCubesApp</string>
|
|
</array>
|
|
<key>keychain-access-groups</key>
|
|
<array>
|
|
<string>$(AppIdentifierPrefix)$(BUNDLE_ID_PREFIX).IceCubesApp</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|