sweetpad icon indicating copy to clipboard operation
sweetpad copied to clipboard

No scheme for monorepo

Open rafaelpedretti-toast opened this issue 9 months ago • 1 comments

In one project I work on we have two apps on the same repo and the extension cannot find the schemes because the response from xcodebuild -list -json has a different structure:

{
  "workspace" : {
    "name" : string,
    "schemes" : string[]
}

where inside a project it is

{
  "project" : {
    "configurations" : string[],
    "name" : string,
    "schemes" : string[],
    "targets" : string[]
  }
}

It would be nice to support this configuration

rafaelpedretti-toast avatar May 16 '24 12:05 rafaelpedretti-toast