UNPKG

node-apk

Version:

A library to parse Android application manifest and signature

22 lines (21 loc) 608 B
import XmlElement from "./xml"; export declare class Receiver { private readonly xml; constructor(xml: XmlElement); get raw(): XmlElement; get name(): string; get permission(): string; get exported(): boolean; } export declare class Manifest { private readonly xml; constructor(xml: XmlElement); get raw(): XmlElement; get versionCode(): number; get versionName(): string; get package(): string; get applicationLabel(): string | number; get applicationIcon(): number; get permissions(): Iterable<string>; get receivers(): Iterable<Receiver>; }