1. In XCode, update (Sphinx) Targets > Signing & Capabilities > Keychain Sharing with the Keychain Group

    1. <Apple Team ID>.<Bundle Identifier>

    Screenshot 2025-02-03 at 06.53.15.png

  2. In file sphinx/Managers/Keychain/KeychainManager.swift update the Keychain Group value with the new Keychain Group From above

    public static let kKeychainGroup = "2M14MLERC9.com.zataara.dev.test"
    
  3. In the file sphinx/sphinx.entitlements update with the correct Keychain Group value.

    <?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>
    <!-- <other values here> -->
    	<array>
    		<string>2M59XHHFF5.com.zataara.dev.test</string>
    	</array>
    </dict>
    </plist>
    

Note: