AppSealing disables apk`s signature when applied. The zipalign and signing are required before release or installation.
1. Apply zipalign
zipalign -p -f -v 4 [APK_FILE] [ZIPALIGNED_OUTPUT_APK_FILE]
Zipalign must be applied before signing apk with apksigner.
2. Sign your apk with ApkSigner
apksigner sign --ks [KEY_STORE_FILE] --ks-key-alias [ALIAS] [ZIPALIGNED_APK_FILE]
3. References
Zipalign & apksigner tools are installed at
%ANDROID_SDK_HOME%\build-tools\%ANY_SDK_VERSION%
In general, no matter which version of the SDK you use, no problem with signing and zipalign.
Check google`s guide for detailed information about zipalign and apksigner tools.
- https://developer.android.com/studio/command-line/zipalign
- https://developer.android.com/studio/command-line/apksigner