bananalyzer
Version:
A simple tool for windows 10, that downloads APKs from Google playstore, analyzes them, and lists all the Google and Huawei SDKs (kits) that are integrated, along with other metadata
8 lines (7 loc) • 522 B
TypeScript
declare const APP_DETAILS_KEYS: readonly ["packageName", "name", "versionName", "description", "updatedOn", "releasedOn", "requiresAndroid", "rating", "downloads", "downloadsDetails", "developer", "reviewsNumber", "icon", "screenshots"];
type SelectorResultType = string | string[] | undefined;
type AppDetails = {
[key in (typeof APP_DETAILS_KEYS)[number]]: SelectorResultType;
};
export declare const getAppGalleryDetails: (packageName: string, closeBrowser?: boolean) => Promise<AppDetails | undefined>;
export {};