mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 09:29:38 +00:00
Debugging APK with Symbols #53
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Honeybunch on 2/5/2021
My workflow with Android involves a mostly-native and very polyglot code-base. Gradle is not involved, the build system is 100% CMake and Cargo. I end up with a very unconventional source tree as I wrangle C, C++, Java and Rust into an APK. Android Studio is particularly bad at letting me debug any Rust with its APK Debugging feature but it does let me attach symbols from a known symbol root. This extension doesn't seem to have any equivalent feature. Am I correct in assuming that this extension is mostly relying on a standardized source tree for resolving symbols? Is there any way that I could provide it a symbolized native lib instead?