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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bugsplat/android-dump-syms

v3.0.2

Published

Cross platform symbol upload tool

Downloads

14

Readme

bugsplat-github-banner-basic-outline

BugSplat

Crash and error reporting built for busy developers.

android-dump-syms

Leverage globs and Mozilla's dump_syms to create .sym files from Android/Linux binaries.

Command Line

  1. Install this package globally npm i -g @bugsplat/android-dump-syms
  2. Run symbol-upload with -h to see the latest usage information:
bobby@BugSplat % ~ % android-dump-syms -h

@bugsplat/android-dump-syms

  android-dump-syms contains a command line utility and a library to help you
  generate sym files from Android binaries via the BugSplat API.

Usage

  -f, --files string (optional)       Glob pattern that specifies a set of android binary files to upload Defaults to '**/*.so'

  -d, --directory string (optional)   Path of the base directory used to search for symbol files. This value will be combined with the --files glob. Defaults to '.'

  -h, --help                          Print this usage guide.

Example

  android-dump-syms glob-for-android-binary-files -d directory-to-search

Links

  🐛 https://bugsplat.com

  💻 https://github.com/BugSplat-Git/android-dump-syms

  💌 [email protected]
  1. Run android-dump-syms passing it a path or glob pattern to locate Android binary files to convert to .sym files.

API

  1. Install this package locally npm i @bugsplat/android-dump-syms.
  2. Import DumpSyms from @bugsplat/android-dump-syms.
import { DumpSyms } from "@bugsplat/android-dump-syms";
  1. Create a new instance of DumpSyms.
const dumpSyms = new DumpSyms();
  1. Call run, passing the function a path to an Android .so file, and optionally an output file path.
const { stderr } = await dumpSyms.run(inputPath, outputPath);

If you've done everything correctly the resulting file will resemble the following:

MODULE Linux arm64 9E957A33B0CDD8A32F80AD65D75601950 MyUnrealCrasher-arm64
INFO CODE_ID 337A959ECDB0A3D82F80AD65D756019583483F98
FILE 0 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/Core/Public/Containers/ContainerAllocationPolicies.h
FILE 1 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/Core/Public/Delegates/DelegateInstancesImpl.h
FILE 2 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/Core/Public/Modules/ModuleManager.h
FILE 3 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/Core/Public/Templates/Function.h
FILE 4 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h
FILE 5 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/CoreUObject/Public/UObject/Object.h
FILE 6 /Users/Shared/Epic Games/UE_5.2/Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectBase.h

Thanks for using BugSplat!