Skip to content

Instantly share code, notes, and snippets.

@BasThomas
Last active July 3, 2019 03:42
Show Gist options
  • Save BasThomas/4c51032c59d279f7cf1b92209b613363 to your computer and use it in GitHub Desktop.
Save BasThomas/4c51032c59d279f7cf1b92209b613363 to your computer and use it in GitHub Desktop.

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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment