Skip to content

Commit 9e35b98

Browse files
committed
Build & codesign native libs
1 parent e2ea233 commit 9e35b98

File tree

11 files changed

+42453
-700
lines changed

11 files changed

+42453
-700
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ Versioning follows the following pattern of `SQLDelight` - `SQLite3MultipleCiphe
301301
`SQLITE_ENABLE_REGEXP=1`
302302
`SQLITE_TEMP_STORE=2`
303303
`SQLITE_USE_URI=1`
304+
`WXSQLITE3_HAVE_CIPHER_AEGIS=0`
304305

305306
**Jvm**
306307

@@ -409,13 +410,13 @@ I'm guessing this is not really a factor on iOS."
409410
<!-- TAG_DEPENDENCIES -->
410411
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.24-blue.svg?logo=kotlin
411412
[badge-coroutines]: https://img.shields.io/badge/coroutines-1.8.1-blue.svg?logo=kotlin
412-
[badge-encoding]: https://img.shields.io/badge/encoding-2.2.2-blue.svg?style=flat
413+
[badge-encoding]: https://img.shields.io/badge/encoding-2.3.1-blue.svg?style=flat
413414
[badge-immutable]: https://img.shields.io/badge/immutable-0.1.4-blue.svg?style=flat
414415
[badge-sqldelight]: https://img.shields.io/badge/SQLDelight-2.0.2-blue.svg?style=flat
415-
[badge-sqlite]: https://img.shields.io/badge/SQLite3-3.47.1-blue.svg?style=flat
416-
[badge-sqlitemc]: https://img.shields.io/badge/SQLite3MultipleCiphers-1.9.1-blue.svg?style=flat
416+
[badge-sqlite]: https://img.shields.io/badge/SQLite3-3.47.2-blue.svg?style=flat
417+
[badge-sqlitemc]: https://img.shields.io/badge/SQLite3MultipleCiphers-2.0.1-blue.svg?style=flat
417418
[badge-sqliter]: https://img.shields.io/badge/SQLiter-1.3.1-blue.svg?style=flat
418-
[badge-sqlitejdbc]: https://img.shields.io/badge/sqlite--jdbc-3.47.1.0-blue.svg?style=flat
419+
[badge-sqlitejdbc]: https://img.shields.io/badge/sqlite--jdbc-3.47.2.0-blue.svg?style=flat
419420

420421
<!-- TAG_PLATFORMS -->
421422
[badge-platform-android]: http://img.shields.io/badge/-android%20[minSdk%2021]-6EDB8D.svg?style=flat
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ POM_DEVELOPER_ID=toxicity-io
3232
POM_DEVELOPER_NAME=Toxicity
3333
POM_DEVELOPER_URL=https://github.com/toxicity-io/
3434

35-
VERSION_NAME=2.0.2-1.9.2-0-SNAPSHOT
35+
VERSION_NAME=2.0.2-2.0.1-0-SNAPSHOT
3636
# 2.0.0-1.6.4-0-alpha01 = (02 00 00 00) + (01 06 04 00) + 11 = 03 06 04 11
3737
# 2.0.0-1.6.4-0-beta01 = (02 00 00 00) + (01 06 04 00) + 21 = 03 06 04 21
3838
# 2.0.0-1.6.4-0-rc01 = (02 00 00 00) + (01 06 04 00) + 31 = 03 06 04 31
@@ -42,4 +42,4 @@ VERSION_NAME=2.0.2-1.9.2-0-SNAPSHOT
4242
# 2.1.0-1.6.5-2 = (02 01 00 00) + (01 06 05 00) + 42 = 03 07 05 42
4343
# 2.1.0-1.6.6-0 = (02 01 00 00) + (01 06 06 00) + 40 = 03 07 06 40
4444
# 2.2.1-1.7.0-0 = (02 02 01 00) + (01 07 00 00) + 40 = 03 09 01 40
45-
VERSION_CODE=03090440
45+
VERSION_CODE=04000340

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ androidx-startup = "1.2.0"
33
androidx-test-core = "1.6.1"
44
androidx-test-runner = "1.6.2"
55

6-
encoding = "2.3.0"
6+
encoding = "2.3.1"
77

88
gradle-android = "8.2.2"
99
gradle-binary-compat = "0.16.3"
@@ -22,7 +22,7 @@ okio = "3.9.0"
2222

2323
sql-delight-dialect = "sqlite-3-38-dialect"
2424
sql-delight = "2.0.2"
25-
sql-jdbc-xerial = "3.47.1.0"
25+
sql-jdbc-xerial = "3.47.2.0"
2626

2727
[libraries]
2828
androidx-startup-runtime = { module = "androidx.startup:startup-runtime", version.ref = "androidx-startup" }

library/driver/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ fun CompileToBitcodeExtension.createSqlite3mc() {
310310
"-DSQLITE_ENABLE_REGEXP=1",
311311
"-DSQLITE_TEMP_STORE=2",
312312
"-DSQLITE_USE_URI=1",
313+
"-DWXSQLITE3_HAVE_CIPHER_AEGIS=0",
313314
).let { compilerArgs.addAll(it) }
314315

315316
// Linker (llvm-link) options

0 commit comments

Comments
 (0)