USAGE: apksigner verify [options] apk

This checks whether the provided APK will verify on Android.


        OPTIONS

--print-certs         Show information about the APK's signing certificates

--min-sdk-version     Lowest API Level on which this APK's signatures will be
                      verified. By default, the value from AndroidManifest.xml
                      is used.

--max-sdk-version     Highest API Level on which this APK's signatures will be
                      verified. By default, the highest possible value is used.

-v, --verbose         Verbose output mode

-h, --help            Show help about this command and exit

-Werr                 Treat warnings as errors


        EXAMPLES

1. Check whether the APK's signatures are expected to verify on all Android
   platforms declared as supported by this APK:
$ apksigner verify app.apk

2. Check whether the APK's signatures are expected to verify on Android
   platforms with API Level 15 and higher:
$ apksigner verify --min-sdk-version 15 app.apk
