UNPKG

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

6 lines (5 loc) 304 B
import { AnalyzedApp } from '../models/analyzedApp'; import { ExcelRow } from '../models/excelRow'; export declare const HEADERS: string[]; export declare const getRowFromApp: (app: AnalyzedApp) => ExcelRow; export declare const saveResult: (apps: AnalyzedApp[], resultPath: string) => Promise<boolean>;