Skip to content

Commit 247b042

Browse files
committed
* Reduces platforms version requirements to Swift Package Manager minimums: .iOS(.v12), .macOS(.v10_13), .macCatalyst(.v13), .watchOS(.v4), .tvOS(.v12), .visionOS(.v1)
* Removes SQLCipher.xcframework binaryTarget from source control and references tagged GitHub release for SQLCipher.xcframework.zip binaryTarget in Package.swift instead
1 parent 46e687b commit 247b042

File tree

88 files changed

+11
-141909
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+11
-141909
lines changed

Package.swift

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,23 @@ import PackageDescription
66
let package = Package(
77
name: "SQLCipher",
88
platforms: [
9-
.macOS(.v10_14), .iOS(.v13), .macCatalyst(.v13), .watchOS(.v8), .tvOS(.v15), .visionOS(.v1)
9+
.iOS(.v12),
10+
.macOS(.v10_13),
11+
.macCatalyst(.v13),
12+
.watchOS(.v4),
13+
.tvOS(.v12),
14+
.visionOS(.v1)
1015
],
1116
products: [
1217
.library(
1318
name: "SQLCipher",
1419
targets: ["SQLCipher"]),
1520
],
1621
targets: [
17-
.binaryTarget(name: "SQLCipher", path: "./Sources/SQLCipher/SQLCipher.xcframework"),
22+
.binaryTarget(name: "SQLCipher",
23+
url: "https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.11.0/SQLCipher.xcframework.zip",
24+
checksum: "4a2ec7b682cd9a8724c2da7d1a2c94e0ecfc8d610f8604cac3bb1dd7c23b7db6"
25+
),
1826
.testTarget(
1927
name: "SQLCipherTests",
2028
dependencies: ["SQLCipher"],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ SQLCipher commercial libraries are [available for purchase](https://www.zetetic.
7676
* Value Level Encryption
7777
* Encrypted Virtual Tables
7878
* Performance Counters & Statistics
79-
* Private Priority Support from SQLCipher developers
79+
* Private Priority Support from SQLCipher developers

Sources/SQLCipher/SQLCipher.xcframework/Info.plist

Lines changed: 0 additions & 168 deletions
This file was deleted.
-153 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)