Preserve provenance before scanning
Record where the file came from, its download time, package name, version and SHA-256 hash. Work on a copy. Compare the signing certificate with a trusted version obtained through a known distribution channel; a matching app name or icon is weak identity evidence.
sha256sum candidate.apk
apksigner verify --verbose --print-certs candidate.apk
Use installed Android build tools for the second command. A valid signature establishes package integrity relative to the signing identity, not that the signer is benevolent.
Combine signals without treating them as votes
| Signal | Useful question | What it cannot establish |
|---|---|---|
| Scanner detections | Do engines recognize suspicious content? | Complete absence of malicious behavior |
| Permissions | Can requested access be justified by features? | Whether the access is abused at runtime |
| Embedded domains | Where might the client communicate? | Every dynamically selected endpoint |
| Certificate identity | Does this match a trusted release lineage? | Trustworthiness of an unknown publisher |
Investigate the nature of a detection. A packing heuristic, an advertising classification and a confirmed credential-stealing family are not interchangeable labels.
Protect unpublished builds
Before using an online scanner, decide whether the APK contains confidential code, customer endpoints or embedded secrets. VirusTotal documents public reporting and potential sample sharing. Use an approved private or local workflow when public submission is inappropriate.
APKLint also processes uploaded files on its server under its stated privacy terms. It should not be treated as an offline inspection tool.
Escalate uncertain results safely
For an application you own or are authorized to assess, use an isolated test device or emulator without personal accounts. Observe permissions, network behavior and changes across realistic user flows. Do not install an unknown sample on your everyday phone just to see whether it opens.
Make the decision explicit
Retain a short outcome: known source and matching identity, unexplained detection requiring review, or insufficient evidence to install. APKLint's malware-risk and static scanners can support triage. They do not replace dynamic analysis, specialist incident response or your organization's software-approval process.
Sources and further reading
- Android Developers: Security best practices
- OWASP: Mobile Application Security Testing Guide
- VirusTotal: How it works
Reference review: 22 September 2026. Examples illustrate the workflow; check your installed versions, release artifact and account-specific Console requirements before applying them. This guide is not a claim that APKLint executed your project or verified your private account.



