Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@Anton-V-K
Anton-V-K / apkcheck.py
Last active September 17, 2025 09:20
Python script to check validity of APK-files in a directory
# pip install apkutils2
import os
import sys
from apkutils2 import APK
def check_apk(apk_path):
apk = APK(apk_path)
manifest = apk.get_manifest()