apkeep
- A command-line tool for downloading APK files from various sourcesPrecompiled binaries for apkeep
on various platforms can be downloaded
here.
To install from crates.io
, simply install rust and
run
shell
cargo install apkeep
Or to install from the latest commit in our repository, run
shell
cargo install --git https://github.com/EFForg/apkeep.git
Docker images are also available through the GitHub Container Registry. Aside from using a specific release version, the following floating tags are available:
See USAGE
.
The simplest example is to download a single APK to the current directory:
shell
apkeep -a com.instagram.android .
This downloads from the default source, APKPure, which does not require credentials. To download directly from the google play store:
shell
apkeep -a com.instagram.android -d google-play -u 'someone@gmail.com' -p somepass .
Or, to download from the F-Droid open source repository:
shell
apkeep -a org.mozilla.fennec_fdroid -d f-droid .
To download a specific version of an APK (possible for APKPure or F-Droid), use the @version
convention:
shell
apkeep -a com.instagram.android@1.2.3 .
Or, to list what versions are available, use -l
:
shell
apkeep -l -a org.mozilla.fennec_fdroid -d f-droid
Refer to USAGE
to download multiple
APKs in a single run.
All the above examples can also be used in Docker with minimal changes. For example, to download a single APK to your chosen output directory:
shell
docker run --rm -v output_path:/output ghcr.io/efforg/apkeep:stable -a com.instagram.android
/output
You can either specify a CSV file which lists the apps to download, or an individual app ID. If you specify a CSV file and the app ID is not specified by the first column, you'll have to use the --field option as well. If you have a simple file with one app ID per line, you can just treat it as a CSV with a single field.
You can use this tool to download from a few distinct sources.
-d google-play
), given a username and password-d apk-pure
), a third-party site hosting APKs available on the Play Store-d f-droid
), a repository for free and open-source Android apps. apkeep
verifies that these APKs are signed by the F-Droid maintainers, and alerts the user if an APK
was downloaded but could not be verifiedUsers should not use app lists or choose so many parallel APK fetches as to place unreasonable or disproportionately large load on the infrastructure of the app distributor.
When using with the Google Play Store as the download source, a few considerations should be made:
License: MIT