The error INSTALL_FAILED_INVALID_APK: Full install must include a base package occurs because Android's split APK installation requires all split APKs (config.*.apk) to be signed with the same certificate as the base APK. Since you signed only config.arm64_v8a.apk with your own key, the signatures no longer match between the base and split APKs.
Re-sign all APKs (base.apk, config.arm64_v8a.apk, config.xxhdpi.apk) with your own key.
bashapksigner sign --ks mykey.jks --ks-key-alias myalias --ks-pass pass:yourpassword --key-pass pass:yourpassword base.apk apksigner sign --ks mykey.jks --ks-key-alias myalias --ks-pass pass:yourpassword --key-pass pass:yourpassword config.arm64_v8a.apk apksigner sign --ks mykey.jks --ks-key-alias myalias --ks-pass pass:yourpassword --key-pass pass:yourpassword config.xxhdpi.apk
Reinstall all APKs together:
bashadb install-multi-package base.apk config.arm64_v8a.apk config.xxhdpi.apk
If you want to ensure full compatibility:
base.apk, config.arm64_v8a.apk, config.xxhdpi.apk) with apktool d.apktool b.adb install-multi-package.Vibe can make mistakes. Check answers. Learn more