0

I'm unable to use the SQLite framework in my project. As I'm getting the errors shown in the image. Can anyone help me out to resolve this error.

enter image description here

Note: The project is in Swift 3.0 and I have used Cocoapod to install the SQLite library

Jayachandra A
  • 1,335
  • 1
  • 10
  • 21

1 Answers1

0

Fixed the issue,

As CSQLite module is trying to access the sqlite3 library from the default path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/include/sqlite3.h

But, where as in my case I have installed two xcode apps with different versions named. So I have changed the Xcode.app to Xcode 8.2.1.app

like /Applications/Xcode 8.2.1.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/include/sqlite3.h

Jayachandra A
  • 1,335
  • 1
  • 10
  • 21