StoreKit Config file Options Grayed Out

I have a question concerning Xcode version 26.

Ever since I installed this version on my Mac, I have been experiencing issues with the StoreKit configuration file. The Simulated StoreKit Failures check boxes and selections are all grayed out.

Once in a while, I see a pop-up stating "The document 'TaConfig.storekit' could not be autosaved. The file has been changed by another application. The pop-up Save as... points to where my config file is located, but the config file is grayed out. I thought maybe the directory where the file is located is write protected, but I have been able to save other files to the same directory.

The Edit Scheme... -> Run -> Options has the StoreKit Configuration set for my file TaConfig.storekit.

It feels like there is an option somewhere that I'm missing.

It does seem buggy. In case you haven't found out already, for the grayed out failure options, it appears that the file may be missing entries in the _storeKitErrors array and the editor won't create them. Edit the config file JSON (Open As -> Source Code) and replace the empty _storeKitErrors array with the following. Seems to fix it for me.

"_storeKitErrors" : [
  {
    "current" : null,
    "enabled" : false,
    "name" : "Load Products"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "Purchase"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "Verification"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "App Store Sync"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "Subscription Status"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "App Transaction"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "Manage Subscriptions Sheet"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "Refund Request Sheet"
  },
  {
    "current" : null,
    "enabled" : false,
    "name" : "Offer Code Redeem Sheet"
  }
]
StoreKit Config file Options Grayed Out
 
 
Q