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

Allow outputting valid yaml #18

Open
ndossougbe opened this issue Oct 29, 2015 · 0 comments
Open

Allow outputting valid yaml #18

ndossougbe opened this issue Oct 29, 2015 · 0 comments

Comments

@ndossougbe
Copy link

It would be nice if it was possible to easily use the output of this tool for other scripts, that would for example compare binary versions to find regressions.

Yaml seems to be a good candidate as it is already quite similar to the current output. It could be essentially changing the output from

Read in 65490 method IDs.
<root>: 65490
    <default>: 3
    android: 6837
        accessibilityservice: 6
        bluetooth: 2
        content: 248
            pm: 22
            res: 45
        ...
    com: 53881
        adjust: 283
            sdk: 283
        codebutler: 65
            android_websockets: 65
        ...
    Overall method count: 65490

To something like

---
<root>: 
    <default>: 65490
    android: 
        <default>: 6837
        accessibilityservice: 6
        bluetooth: 2
        content: 
            <default>: 248
            pm: 22
            res: 45
        ...
    com:
        <default>: 53881
        adjust: 
            <default>: 283
            sdk: 283
        codebutler:
            <default>: 65
            android_websockets: 65
        ...

The totals aren't as prominent as in the current format so maybe just make it an option instead of the default format?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant