Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sqlcipher/sqlcipher-android
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fc26a3c
Choose a base ref
...
head repository: sqlcipher/sqlcipher-android
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a005db3
Choose a head ref
  • 4 commits
  • 6 files changed
  • 1 contributor

Commits on Apr 10, 2026

  1. Configuration menu
    Copy the full SHA
    50d507a View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2026

  1. Replace Critical-based JNI API to prevent blocking garbage collector

    Replace the following APIs:
    - GetStringCritical
    - ReleaseStringCritical
    - GetPrimitiveArrayCritical
    - ReleasePrimitiveArrayCritical
    
    with the following:
    - GetStringChars
    - ReleaseStringChars
    - GetByteArrayElements
    - ReleaseByteArrayElements
    
    The critical version of these API's would prevent the garbage collector
    from running until the corresponding Release API was called. This is in
    reference to this report:
    
    https://discuss.zetetic.net/t/sqlcipher-for-android-4-14-1-community-edition-release/7190/2
    developernotes committed Apr 23, 2026
    Configuration menu
    Copy the full SHA
    2862a81 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2026

  1. Configuration menu
    Copy the full SHA
    5473803 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a005db3 View commit details
    Browse the repository at this point in the history
Loading