@op-engineering/op-sqlite 9.2.5 → 9.2.7
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/android/build.gradle +3 -2
- package/cpp/DBHostObject.cpp +2 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -164,7 +164,8 @@ android {
|
|
|
164
164
|
"**/libreact_nativemodule_core.so",
|
|
165
165
|
"**/libturbomodulejsijni.so",
|
|
166
166
|
"**/libc++_shared.so",
|
|
167
|
-
"**/libfbjni.so"
|
|
167
|
+
"**/libfbjni.so",
|
|
168
|
+
"**/libreactnative.so",
|
|
168
169
|
]
|
|
169
170
|
}
|
|
170
171
|
|
|
@@ -227,4 +228,4 @@ if (isNewArchitectureEnabled()) {
|
|
|
227
228
|
libraryName = "opsqlite"
|
|
228
229
|
codegenJavaPackageName = "com.op.sqlite.example"
|
|
229
230
|
}
|
|
230
|
-
}
|
|
231
|
+
}
|
package/cpp/DBHostObject.cpp
CHANGED