New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@commapp/sqlcipher-amalgamation

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commapp/sqlcipher-amalgamation

SQLCipher sources amalgamation file

  • 4.5.5-e
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
563
increased by60.86%
Maintainers
0
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 15 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc