Skip to content

Commit

Permalink
Add explicit visionOS deployment target (#3642)
Browse files Browse the repository at this point in the history
This fixes a compilation error with `Xcode 15.3 beta 2`.

Because we were missing the deployment target, Xcode defaults to the
latest (which is `1.1`), and fails with a deprecation warning.
  • Loading branch information
NachoSoto authored Feb 6, 2024
1 parent 15df832 commit a907c2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RevenueCat.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4509,6 +4509,7 @@
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 6.2;
XROS_DEPLOYMENT_TARGET = 1.0;
};
name = Debug;
};
Expand Down Expand Up @@ -4573,6 +4574,7 @@
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 6.2;
XROS_DEPLOYMENT_TARGET = 1.0;
};
name = Release;
};
Expand Down

0 comments on commit a907c2e

Please sign in to comment.