Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
johnno1962 committed Sep 5, 2017
0 parents commit f64fcda
Show file tree
Hide file tree
Showing 5 changed files with 10,720 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import PackageDescription

let package = Package(name: "libsqlite3")
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# swift-android-sqlite
Prebuilt Android library extension for sqlite

To include in your project place something like the following in your project's Package.swift:

```
import PackageDescription
let package = Package(
name: "libswifthello.so",
targets: [
],
dependencies: [
.Package(url: "https://github.com/SwiftJava/java_swift.git", majorVersion: 2),
.Package(url: "https://github.com/SwiftJava/swift-android-sqlite.git", majorVersion: 1),
]
)
```
Binary file added libs/libsqlite3.so
Binary file not shown.
5 changes: 5 additions & 0 deletions module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module sqlite3 [system] {
header "sqlite3.h"
link "sqlite3"
export *
}
Loading

0 comments on commit f64fcda

Please sign in to comment.