npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-native-sqlcipher-16kb

v1.0.5

Published

SQLCipher plugin for React Native with Android 15+ 16KB page size support for Google Play Store compliance

Readme

react-native-sqlcipher-16kb

🍴 Forked from linchCN/react-native-sqlcipher

SQLCipher plugin for React Native with Android 15+ 16KB page size support for Google Play Store compliance.

npm version License: MIT Fork Status

🚀 What Makes This Fork Special

This is an enhanced version of the original react-native-sqlcipher with critical updates for Android 15+ compatibility:

  • 🎯 16KB Page Size Support - Ready for Google Play Store requirements starting November 2025
  • 🔧 SQLCipher 4.9.0 - Latest version with 16KB capabilities
  • ⚙️ Android Gradle Plugin 8.5.1+ - Required for 16KB ELF alignment
  • 📱 AndroidX SQLite 2.4.0 - Updated dependencies for Android 15+
  • 🔒 Enhanced Stability - Fixed database persistence issues across app restarts
  • 🛡️ Production Ready - Extensively tested and battle-hardened

📋 Google Play Store 16KB Requirement

Starting November 1st, 2025, Google Play Store requires all apps targeting Android 15+ to support 16KB page sizes. This fork ensures your SQLCipher databases are compliant.

Why This Matters:

  • Apps failing 16KB compatibility will be rejected from Google Play Store
  • Affects all apps targeting Android 15+ (API level 35+)
  • Required for new app submissions and updates
  • Critical for maintaining Play Store distribution

🛠 Installation

NPM Installation (Recommended)

npm install react-native-sqlcipher-16kb --save

Direct GitHub Installation

# Install from this fork
npm install git+https://github.com/mn-codes/react-native-sqlcipher.git

# Install specific version
npm install git+https://github.com/mn-codes/react-native-sqlcipher.git#v1.0.0

Auto-linking (React Native 0.60+)

For iOS:

cd ios && pod install

For Android: Auto-linking handles it automatically!

📱 Platform Requirements

| Platform | Requirement | |----------|-------------| | React Native | >= 0.60.0 | | Android | API Level 21+ (Android 5.0+) | | iOS | iOS 10.0+ | | Android Gradle Plugin | >= 8.5.1 (for 16KB support) | | Node.js | >= 12.0.0 |

🔧 Android 15+ Configuration

1. Update Project Build Files

android/build.gradle:

buildscript {
    dependencies {
        classpath 'com.android.tools.build:gradle:8.5.1' // Required for 16KB
    }
}

android/app/build.gradle:

android {
    compileSdkVersion 34 // Android 14+ required
    
    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 34
    }
    
    // Enable 16KB page size support
    packagingOptions {
        jniLibs {
            useLegacyPackaging = false
        }
    }
}

dependencies {
    implementation 'net.zetetic:sqlcipher-android:4.9.0'
    implementation 'androidx.sqlite:sqlite:2.4.0'
}

gradle-wrapper.properties:

distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip

💻 Usage

Basic Database Setup

import SQLite from 'react-native-sqlcipher-16kb';

const db = SQLite.openDatabase(
  {
    name: 'MyDatabase.db',
    key: 'your-secure-encryption-key',
    location: 'default',
    pageSize: 16384, // 16KB page size for Android 15+ compliance
  },
  () => console.log('✅ Database opened successfully'),
  (error) => console.error('❌ Database error:', error)
);

Migration from Original Package

// Before (original package)
import SQLite from 'react-native-sqlcipher';

// After (this fork)
import SQLite from 'react-native-sqlcipher-16kb';

// Same API! Just add pageSize for 16KB support
const config = {
  name: 'database.db',
  key: 'encryption-key',
  pageSize: 16384, // NEW: 16KB page size
  location: 'default',
};

CRUD Operations (Same API)

// Create table
db.transaction((tx) => {
  tx.executeSql(
    'CREATE TABLE IF NOT EXISTS users (id INTEGER PRIMARY KEY, name TEXT, email TEXT)',
    [],
    () => console.log('Table created'),
    (error) => console.error('Error:', error)
  );
});

// Insert data
db.transaction((tx) => {
  tx.executeSql(
    'INSERT INTO users (name, email) VALUES (?, ?)',
    ['John Doe', '[email protected]'],
    () => console.log('User added'),
    (error) => console.error('Insert error:', error)
  );
});

// Query data
db.transaction((tx) => {
  tx.executeSql(
    'SELECT * FROM users',
    [],
    (tx, results) => {
      for (let i = 0; i < results.rows.length; i++) {
        console.log('User:', results.rows.item(i));
      }
    }
  );
});

🔍 Verify 16KB Support

Test your database configuration:

db.transaction((tx) => {
  tx.executeSql(
    'PRAGMA cipher_page_size',
    [],
    (tx, results) => {
      if (results.rows.length > 0) {
        const pageSize = results.rows.item(0).cipher_page_size;
        console.log(`📄 Page size: ${pageSize} bytes`);
        // Should show 16384 for 16KB pages
      }
    }
  );
});

🆚 Comparison with Original

| Feature | Original | This Fork | |---------|----------|-----------| | SQLCipher Version | 4.5.2 | 4.9.0 ✅ | | 16KB Page Size | ❌ No | ✅ Yes | | Android Gradle Plugin | 3.1.4 | 8.5.1+ ✅ | | Android 15+ Ready | ❌ No | ✅ Yes | | Database Persistence | Issues | ✅ Fixed | | Google Play Compliance | ❌ No | ✅ Ready | | API Compatibility | ✅ | ✅ Same |

🐛 Troubleshooting

Common Build Issues

# Clean and rebuild
cd android && ./gradlew clean
cd .. && npx react-native run-android

# Clear React Native cache
npx react-native start --reset-cache

Database Issues

  • Data not persisting: Ensure consistent encryption key across sessions
  • Build errors: Update to Android Gradle Plugin 8.5.1+
  • Import errors: Clear node_modules and reinstall

🔄 Migration Guide

From Original react-native-sqlcipher:

  1. Uninstall original: npm uninstall react-native-sqlcipher
  2. Install this fork: npm install react-native-sqlcipher-16kb
  3. Update imports in your code
  4. Add pageSize: 16384 to database configuration
  5. Update Android build files (see configuration above)
  6. Test thoroughly

Backwards Compatibility

  • ✅ Same API as original package
  • ✅ Existing database files work fine
  • ✅ No breaking changes to your code
  • ✅ Just enhanced with 16KB support

📚 Documentation

🤝 Contributing

Contributions are welcome! This fork maintains compatibility with the original while adding 16KB support.

  1. Fork this repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

🙏 Credits & Attribution

This fork builds upon excellent work by:

📄 License

MIT License - Same as original package. See LICENSE file for details.

🔮 Roadmap

  • [x] v1.0.0: Android 15+ compatibility with 16KB support
  • [ ] v1.1.0: Enhanced 16KB page size implementation
  • [ ] v1.2.0: Performance optimizations for large databases
  • [ ] v2.0.0: iOS 16KB support (if needed by Apple)

🚀 Ready for Google Play Store compliance and Android 15+ compatibility!

Made with ❤️ for the React Native community