expo-sqlite 14.0.5 → 14.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/android/build.gradle +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 14.0.6 — 2024-07-31
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fixed the "disk I/O error" on older Android devices. ([#30718](https://github.com/expo/expo/pull/30718) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
13
19
|
## 14.0.5 — 2024-07-23
|
|
14
20
|
|
|
15
21
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ apply plugin: 'com.android.library'
|
|
|
4
4
|
apply plugin: 'de.undercouch.download'
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '14.0.
|
|
7
|
+
version = '14.0.6'
|
|
8
8
|
|
|
9
9
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
10
10
|
apply from: expoModulesCorePlugin
|
|
@@ -27,9 +27,9 @@ def downloadsDir = customDownloadsDir ? new File(customDownloadsDir) : new File(
|
|
|
27
27
|
def SQLITE3_SRC_DIR = new File("$buildDir/sqlite3_src")
|
|
28
28
|
|
|
29
29
|
def getSQLiteBuildFlags() {
|
|
30
|
-
def buildFlags = '-DSQLITE_ENABLE_BYTECODE_VTAB=1'
|
|
30
|
+
def buildFlags = '-DSQLITE_ENABLE_BYTECODE_VTAB=1 -DSQLITE_TEMP_STORE=2'
|
|
31
31
|
if (findProperty('expo.sqlite.enableFTS') !== 'false') {
|
|
32
|
-
buildFlags <<= '-DSQLITE_ENABLE_FTS4=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS5=1'
|
|
32
|
+
buildFlags <<= ' -DSQLITE_ENABLE_FTS4=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS5=1'
|
|
33
33
|
}
|
|
34
34
|
def customBuildFlags = findProperty('expo.sqlite.customBuildFlags') ?: ''
|
|
35
35
|
if (customBuildFlags != '') {
|
|
@@ -57,7 +57,7 @@ android {
|
|
|
57
57
|
namespace "expo.modules.sqlite"
|
|
58
58
|
defaultConfig {
|
|
59
59
|
versionCode 18
|
|
60
|
-
versionName "14.0.
|
|
60
|
+
versionName "14.0.6"
|
|
61
61
|
|
|
62
62
|
externalNativeBuild {
|
|
63
63
|
cmake {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-sqlite",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.6",
|
|
4
4
|
"description": "Provides access to a database that can be queried through a WebSQL-like API (https://www.w3.org/TR/webdatabase/). The database is persisted across restarts of your app.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"expo": "*"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "49046da54cca317faefa766698b0d49890781ff6"
|
|
65
65
|
}
|