0

I'm creating a Swift framework and I need to use SQLite, when I create a bridging file the compiler gives me the following error: using bridging headers with framework targets is unsupported, however I found this project (https://github.com/stephencelis/SQLite.swift) which includes a bridging file. How has he done it?

1 Answers1

1

You cannot use a bridging file within a framework. The solution is to use a map file. See this answer https://stackoverflow.com/a/25422889/4365754

Community
  • 1
  • 1
arnau
  • 410
  • 5
  • 12