Does App Bundles (AAB) automatically use APK Signature Scheme v2?

Viewed 1020

I am reading some Android 11 updates documentation and apparently it is required to implement APK Signature Scheme v2. Does the AAB format do this already?

1 Answers

The Android App Bundle is only a publishing format. The mandate of the signature v2 scheme applies to APKs that are installed on the device. When Google Play generates the APKs from the App Bundle, it uses signature v2 scheme (or more recent), so if you publish to Google Play, you're sorted.

Related