14

I have created .xcframework and trying to use in another app by embedding the .xcframework in xcode project, but I am getting an error "error: the use of xcframeworks is not supported in the legacy build system". I am testing this in xcode 11.3

KP26
  • 283
  • 3
  • 14
  • 11
    You can try turning off the legacy build system. Go to `File` -> `Workplace Settings` -> `Build System` -> Change to `New Build System (Default)`. – Philip Jan 19 '20 at 12:51
  • Project Settings, not workplace setting – Mona Dec 01 '20 at 05:12
  • In words its confusing which project settings to select. See a shot video here: https://www.youtube.com/watch?v=x3_efYinxac – Vin May 10 '21 at 08:35

1 Answers1

2

You can try turning off the legacy build system. Go to File -> Workplace Settings -> Build System -> Change to New Build System (Default).

Jeremy Caney
  • 7,102
  • 69
  • 48
  • 77