From 5d6f817df78cc83a290968c8e27cf5525780fed9 Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Fri, 19 Apr 2024 11:18:08 -0800 Subject: [PATCH] fix: allow app/tests to run back to iOS 15 (#88) --- EmpowerPlant.xcodeproj/project.pbxproj | 3 +++ README.md | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/EmpowerPlant.xcodeproj/project.pbxproj b/EmpowerPlant.xcodeproj/project.pbxproj index bb5e435..c4fa347 100644 --- a/EmpowerPlant.xcodeproj/project.pbxproj +++ b/EmpowerPlant.xcodeproj/project.pbxproj @@ -380,6 +380,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -518,6 +519,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -574,6 +576,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = iphoneos; diff --git a/README.md b/README.md index 0c4d2d5..b360c96 100644 --- a/README.md +++ b/README.md @@ -24,3 +24,7 @@ This runs the workflow defined in [release.yml](.github/workflows/release.yml). See https://github.com/sentry-demos/ios/releases/tag/0.0.1 for a sample release Note: TDA must be restarted for it to pick up new version + +## TDA + +The command that runs this in TDA can be found here: https://github.com/sentry-demos/empower/blob/a77428aec6cb8e6563caf3d9671419461946db2e/tda/conftest.py#L480-L514