Because we're most likely not dealing with iOS 13 only apps ourselves, let's lower the deployment target to iOS 12, so we can more easily understand what APIs are iOS 13 only.
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
And because with that we're making things a bit harder for ourselves, let's make something else easier. We are dealing with iPad here, so we opt to only support iPad for this app.
- TARGETED_DEVICE_FAMILY = "1,2";
+ TARGETED_DEVICE_FAMILY = 2;