diff --git a/bun.lockb b/bun.lockb index bb286ebe..f6cebd99 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index d01a0609..0b88d045 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -78,6 +78,7 @@ android { compileSdk rootProject.ext.compileSdkVersion namespace "com.margelo.rnnitrosqlite.example" + defaultConfig { applicationId "com.margelo.rnnitrosqlite.example" minSdkVersion rootProject.ext.minSdkVersion @@ -85,6 +86,7 @@ android { versionCode 1 versionName "1.0" } + signingConfigs { debug { storeFile file('debug.keystore') @@ -93,6 +95,7 @@ android { keyPassword 'android' } } + buildTypes { debug { signingConfig signingConfigs.debug diff --git a/example/package.json b/example/package.json index 41c9931f..53ade1dd 100644 --- a/example/package.json +++ b/example/package.json @@ -23,7 +23,7 @@ "expo-status-bar": "^1.12.1", "react": "19.0.0", "react-native": "0.78.0", - "react-native-nitro-modules": "0.24.1", + "react-native-nitro-modules": "0.26.2", "react-native-nitro-sqlite": "9.1.9", "react-native-safe-area-context": "^5.2.0", "react-native-screens": "^4.9.1", diff --git a/package.json b/package.json index 1ca9380e..efdf5a65 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "patch-package": "^8.0.0", "react": "19.0.0", "react-native": "0.78.0", - "react-native-nitro-modules": "0.24.1" + "react-native-nitro-modules": "0.26.2" }, "devDependencies": { "@babel/core": "^7.25.2", diff --git a/package/android/build.gradle b/package/android/build.gradle index e8362422..208fc24f 100644 --- a/package/android/build.gradle +++ b/package/android/build.gradle @@ -110,7 +110,8 @@ android { arguments "-DANDROID_STL=c++_shared", "-DANDROID_TOOLCHAIN=clang", "-DREACT_NATIVE_MINOR_VERSION=${REACT_NATIVE_MINOR_VERSION}", - "-DSQLITE_FLAGS='${SQLITE_FLAGS ? SQLITE_FLAGS : ''}'" + "-DSQLITE_FLAGS='${SQLITE_FLAGS ? SQLITE_FLAGS : ''}'", + "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" abiFilters (*reactNativeArchitectures()) } } diff --git a/package/package.json b/package/package.json index 231d089f..460058aa 100644 --- a/package/package.json +++ b/package/package.json @@ -74,7 +74,7 @@ "react": "19.0.0", "react-native": "0.78.0", "react-native-builder-bob": "^0.31.0", - "react-native-nitro-modules": "0.24.1" + "react-native-nitro-modules": "0.26.2" }, "peerDependencies": { "react": ">=17.0.0",