Home
last modified time | relevance | path

Searched refs:APK (Results 1 – 9 of 9) sorted by relevance

/tools/apksig/
DREADME.md3 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
[all …]
Dandroid_plugin_for_gradle.gradle14 project.ext.pomDesc = 'Library for signing APKs and for checking that APK signatures verify on Andr…
/tools/apksig/src/apksigner/java/com/android/apksigner/
Dhelp_verify.txt3 This checks whether the provided APK will verify on Android. By default, this
4 checks whether the APK will verify on all Android platform versions supported
5 by the APK (as declared using minSdkVersion in AndroidManifest.xml). Use
6 --min-sdk-version and/or --max-sdk-version to verify the APK against a custom
12 --print-certs Show information about the APK's signing certificates
16 --min-sdk-version Lowest API Level on which this APK's signatures will be
20 --max-sdk-version Highest API Level on which this APK's signatures will be
25 --in APK file to verify. This is an alternative to specifying
26 the APK as the very last parameter, after all options.
33 1. Check whether the APK's signatures are expected to verify on all Android
[all …]
Dhelp_sign.txt3 This signs the provided APK, stripping out any pre-existing signatures. Signing
5 pair and a corresponding certificate. Typically, an APK is signed by just one
12 --in Input APK file to sign. This is an alternative to
13 specifying the APK as the very last parameter, after all
15 overwritten with the resulting signed APK.
17 --out File into which to output the signed APK. By default, the
18 APK is signed in-place, overwriting the input file.
27 --v2-signing-enabled Whether to enable signing using APK Signature Scheme v2
33 --v3-signing-enabled Whether to enable signing using APK Signature Scheme v3
43 --min-sdk-version Lowest API Level on which this APK's signatures will be
[all …]
Dhelp.txt9 apksigner is a tool for signing Android APK files and for checking whether
10 signatures of APK files will verify on Android devices.
16 sign Sign the provided APK
18 verify Check whether the provided APK is expected to verify on
Dhelp_rotate.txt4 new, for use in a key rotation scenario using APK Signature Scheme v3.
11 different signing certificates. This can be used with APK Signature Scheme v3
12 to rotate the signing certificate for an APK.
13 An APK previously signed with a SigningCertificateLineage can also be
14 specified; the lineage will then be read from the signed data in the APK.
42 used in some situations on the platform even though the APK is now being signed
Dhelp_lineage.txt13 An APK previously signed with a SigningCertificateLineage can also be
14 specified; the lineage will then be read from the signed data in the APK.
41 used in some situations on the platform even though the APK is now being signed
/tools/tradefederation/contrib/src/com/android/framework/tests/
DPackageManagerStressHostTests.java42 private static enum APK { enum in PackageManagerStressHostTests
184 String apkName = LARGE_APPS[i][APK.FILENAME.ordinal()]; in testInstallManyLargeAppsOnSD()
185 String pkgName = LARGE_APPS[i][APK.PACKAGENAME.ordinal()]; in testInstallManyLargeAppsOnSD()
199 String apkName = LARGE_APPS[i][APK.FILENAME.ordinal()]; in testInstallManyLargeAppsOnSD()
200 String pkgName = LARGE_APPS[i][APK.PACKAGENAME.ordinal()]; in testInstallManyLargeAppsOnSD()
/tools/test/graphicsbenchmark/performance_tests/hostside/test/com/android/game/qualification/metric/
DGameQualificationFpsCollectorTest.java36 private static final ApkInfo APK = new ApkInfo( field in GameQualificationFpsCollectorTest
53 mCollector.setApkInfo(APK); in setUp()