• Home
  • Raw
  • Download

Lines Matching refs:APK

3 apksig is a project which aims to simplify APK signing and checking whether APK signatures are
7 [APK Signature Scheme v2](https://source.android.com/security/apksigning/v2.html) (supported since
10 The key feature of apksig is that it knows about differences in APK signature verification logic
11 between different versions of the Android platform. apksig thus thoroughly checks whether an APK's
12 signature is expected to verify on all Android platform versions supported by the APK. When signing
13 an APK, apksig chooses the most appropriate cryptographic algorithms based on the Android platform
14 versions supported by the APK being signed.
26 * `ApkSigner` which signs the provided APK so that it verifies on all Android platform versions
27 supported by the APK. The range of platform versions can be customized.
28 * `ApkVerifier` which checks whether the provided APK is expected to verify on all Android
29 platform versions supported by the APK. The range of platform versions can be customized.
31 This is useful in optimized APK building pipelines, such as in Android Plugin for Gradle,
32 which need to perform signing while building an APK, instead of after. For simpler use cases
33 where the APK to be signed is available upfront, the `ApkSigner` above is easier to use.
44 * sign the provided APK so that it verifies on all Android platforms supported by the APK. Run
46 * check whether the provided APK's signatures are expected to verify on all Android platforms
47 supported by the APK. Run `apksigner verify` for usage information.
49 The tool determines the range of Android platform versions (API Levels) supported by the APK by
50 inspecting the APK's AndroidManifest.xml. This behavior can be overridden by specifying the range