maddob
maddob

Reputation: 1009

SQLite.swift build error "Module file's minimum deployment target is ios8.3 v8.3"

I have upgraded OS X from 10.9 to 10.10 in order to be able to use Xcode 6.3 - current Version is 6.3 (6D570).

When I created my project with Xcode 6.2 I successfully imported SQLite.swift as described in the documentation and everything was working.

After I upgraded to Xcode 6.3 the project cannot be build - I always get the error:

Module file's minimum deployment target is ios8.3 v8.3: /Users/d...

I have tried to set different deployment targets as described in this answer but nothing helps :(

Can somebody help? Thanks in advance

Upvotes: 2

Views: 4292

Answers (1)

maddob
maddob

Reputation: 1009

I finally fixed the problem by changing the Deployment Target of the referenced SQLite project to 8.0. If you see iOS Deployment Target 8.3 lower the version and the error shall disappear.

Also clean the project by holding the alt/option key as pointed out by @stephencelis in the comments

Upvotes: 5

Related Questions