1

From fastlane scan documentation

xcconfig Use an extra XCCONFIG file to build your app

How do you change COMPILER_INDEX_STORE_ENABLE=NO?

Ted
  • 22,696
  • 11
  • 95
  • 109

1 Answers1

0

This works:

run_tests(
    ...
    xcargs: "COMPILER_INDEX_STORE_ENABLE=NO"
    ...
)
Ted
  • 22,696
  • 11
  • 95
  • 109