In Android 14, Google introduces new limitations on the installation of applications targeting old versions of Android.
In Android 14 it will no longer be possible to install any application that targets API level 23 - Android 6.0. Attempting to do so will trigger a security exception.
Yes. If a device is enrolled with, or upgraded to Android 14, it will no longer be possible to push old Android applications. Devices with apps already installed will not be affected.
No. It's certainly better to ensure apps are targeting the latest API level where possible, but as long as applications target an API level higher than 23 (Android 6.0), apps will continue to be able to install without issue in Android 14.
NB: This new policy, like Google Play's targetSDK requirements will increase year-on-year. This means apps that target API levels lower than 24 (7.0) will not install with Android 15 in 2024.
Yes, on an Android 14 device you may connect to ADB and sideload an application with:
adb install name_of_package.apk
This will result in an error similar to:
INSTALL_FAILED_DEPRECATED_SDK_VERSION: App package must target at least SDK version 23, but found 22
To overcome this error and install the application anyway, use:
adb install --bypass-low-target-sdk-block name_of_package.apk
Note this only works via ADB, there are no other means of bypassing the SDK block.
View What's new in Android 14 for enterprise for details of this and other changes in Android 14, and for the technically-minded, here's Google's documentation on the change.