4.5.5-d • Published 3 months ago

@commapp/sqlcipher-amalgamation v4.5.5-d

Weekly downloads
-
License
BSD
Repository
github
Last release
3 months ago

SQLCipher amalgamation file for React Native

npm version

SQLCipher C sources amalgamation file NPM package for building in the React Native project.

Using for Android builds

You can use it as an npm package dependency at the top level of the project and include it in the native/android/app/CMakeLists.txt:

include_directories(
	...
	../../node_modules/@commapp/sqlcipher-amalgamation/src
)

file(GLOB SQLCIPHER "../../node_modules/@commapp/sqlcipher-amalgamation/src/*.c")

add_library(
	...
	${SQLCIPHER}
)

Using for iOS

The package must be installed as an npm dependency at the top level of the project and include in the native/ios/Podfile:

target 'Project' do
	...
	pod 'SQLCipher-Amalgamation', :path => '../../node_modules/@commapp/sqlcipher-amalgamation'

Release and versioning

This package release version is the same as the SQLCipher release version.

4.5.5-d

3 months ago

4.5.5-c

4 months ago

4.5.5-a

5 months ago

4.5.5-b

5 months ago

4.5.5

5 months ago

4.4.3-a

3 years ago

4.4.3

3 years ago