aapt2-dump-badging2json
v0.1.2
Published
convert aapt2 dump badging to json
Readme
aapt2-dump-badging2json
Parses stdout from AAPT2 Dump badging to JSON.
Usage
Declaration
export declare function badging2Json(dump: string): string;Example
aapt2 has to be in $PATH.
import { badging2Json } from 'aapt2-dump-badging2json';
const dump: string = '...';
const json = JSON.parse(badging2Json(dump));
