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: libxposed/api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: libxposed/api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feat/dexsql
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 4 files changed
  • 3 contributors

Commits on Jun 13, 2026

  1. Add API 103: openDex for read-only SQL over a loaded package's APK/DEX

    XposedModuleInterface.PackageLoadedParam.openDex() returns a DexDatabase: a
    Closeable, read-only SQL view over that loaded package's APK/DEX. Modules run
    DexDatabase.query(String) -> android.database.Cursor (consumed like
    SQLiteDatabase.rawQuery) and close() it when done (it holds the mapped
    dex/cache) -- a clear lifecycle, not a one-shot query with no handle to release.
    
    Scoped to the loaded-apk callback param (not XposedInterface) so it
    unambiguously targets that package's dex; PackageReadyParam inherits it.
    Added as API 103 (LIB_API = API_103, libVersion 103.0.0). Implemented by the
    framework (e.g. LSPosed via its dexsql engine).
    
    Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
    yujincheng08 and claude committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    bbada22 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2026

  1. Update API semantics

    Dr-TSNG committed Jun 14, 2026
    Configuration menu
    Copy the full SHA
    157366e View commit details
    Browse the repository at this point in the history
Loading