You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/Index.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,14 +125,18 @@ install SQLite.swift with Carthage:
125
125
If you want to use a more recent version of SQLite than what is provided with the OS you can require the `standalone` subspec:
126
126
127
127
``` ruby
128
-
pod 'SQLite.swift/standalone', '~> 0.11.1'
128
+
target 'YourAppTargetName' do
129
+
pod 'SQLite.swift/standalone', '~> 0.11.1'
130
+
end
129
131
```
130
132
131
133
By default this will use the most recent version of SQLite without any extras. If you want you can further customize this by adding another dependency to sqlite3 or one of its subspecs:
132
134
133
135
```ruby
134
-
pod 'SQLite.swift/standalone', '~> 0.11.1'
135
-
pod 'sqlite3/fts5', '= 3.15.0'# SQLite 3.15.0 with FTS5 enabled
136
+
target 'YourAppTargetName'do
137
+
pod 'SQLite.swift/standalone', '~> 0.11.1'
138
+
pod 'sqlite3/fts5', '= 3.15.0'# SQLite 3.15.0 with FTS5 enabled
139
+
end
136
140
```
137
141
138
142
See the [sqlite3 podspec][sqlite3pod] for more details.
@@ -143,7 +147,9 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the `SQLCiphe
143
147
subspec in your Podfile:
144
148
145
149
```ruby
146
-
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
150
+
target 'YourAppTargetName'do
151
+
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
152
+
end
147
153
```
148
154
149
155
This will automatically add a dependency to the SQLCipher pod as well as extend
0 commit comments