I am developing a new iOS app, that is supposed to support the new drag and drop feature (iOS 11) out of the box. However I want it to be executable on older (iOS 10) devices as well. As I understand it setting the Deployment Target
to iOS 11 will prevent the app from being installed on older devices. However setting it down to iOS 10.3 will cause errors to appear, stating that Drag and Drop is only available on iOS 11.0 or newer.
My question is: Is there a way I can make the app available to older devices by either providing two versions (one with DnD, one without for legacy) or tell xcode to ignore the DnD lines for older versions? Or is this just simply impossible?
All help is appreciated!