Android N – how to check if apk is signed with schema v2

Run apksigner verify -v <apk> and look for Verified using v2 scheme (APK Signature Scheme v2): true in the output. apksigner can be found in Android SDK build tools 24.0.3. apksigner’s source code is here: https://android.googlesource.com/platform/tools/apksig/. For an already installed package on Android Nougat: adb shell pm dump <package name> | grep apkSigningVersion. 1 means … Read more

How to enable Google Play App Signing

Before proceeding watch this Android Developers video to understand the implications of your App Signing enrollment choice: https://youtu.be/odv_1fxt9BI This guide is oriented to developers who already have an application in the Play Store. If you are starting with a new app the process it’s much easier and you can follow the guidelines of paragraph “New … Read more