Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for symbolicating APK/ZIP-embedded libraries on Android #662

Merged

Commits on Sep 9, 2024

  1. Add support for symbolicating APK/ZIP-embedded libraries on Android

    By default, modern Android build tools will store native libraries
    uncompressed, and the loader will map them directly from the APK
    (instead of the package manager extracting them on installation).
    
    This commit adds support for symbolicating these embedded libraries.
    
    To avoid parsing ZIP structures, the offset of the library within the
    archive is determined via /proc/self/maps.
    
    ref: https://android.googlesource.com/platform/bionic/+/main/android-changes-for-ndk-developers.md#opening-shared-libraries-directly-from-an-apk
    sudoBash418 committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    6319c02 View commit details
    Browse the repository at this point in the history