Skip to content

Commit 5888e6d

Browse files
committed
another fix attempt
1 parent 8514d66 commit 5888e6d

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
4343
- name: "Install iOS 18.3 Platform"
4444
run: |
45-
sudo xcode-select --switch /Applications/Xcode_16.3.app
46-
sudo xcodebuild -downloadPlatform iOS
47-
sudo xcodebuild -downloadPlatform iOS -platform iOS -version 18.3
45+
sudo xcode-select --switch /Applications/Xcode_16.4.app
46+
# sudo xcodebuild -downloadPlatform iOS
47+
# sudo xcodebuild -downloadPlatform iOS -platform iOS -version 18.4
4848
4949
- name: "Fastlane ${{ env.command }}"
5050
run: fastlane ${{ env.command }}

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
3636
- name: "Install iOS 18.3 Platform"
3737
run: |
38-
sudo xcode-select --switch /Applications/Xcode_16.3.app
39-
sudo xcodebuild -downloadPlatform iOS
40-
sudo xcodebuild -downloadPlatform iOS -platform iOS -version 18.3
38+
sudo xcode-select --switch /Applications/Xcode_16.4.app
39+
# sudo xcodebuild -downloadPlatform iOS
40+
# sudo xcodebuild -downloadPlatform iOS -platform iOS -version 18.4
4141
4242
- name: "Fastlane Tests"
4343
run: fastlane tests

Django Files.xcodeproj/project.pbxproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@
466466
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
467467
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait";
468468
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
469+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
469470
LD_RUNPATH_SEARCH_PATHS = (
470471
"$(inherited)",
471472
"@executable_path/Frameworks",
@@ -512,6 +513,7 @@
512513
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
513514
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait";
514515
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
516+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
515517
LD_RUNPATH_SEARCH_PATHS = (
516518
"$(inherited)",
517519
"@executable_path/Frameworks",
@@ -583,7 +585,7 @@
583585
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
584586
GCC_WARN_UNUSED_FUNCTION = YES;
585587
GCC_WARN_UNUSED_VARIABLE = YES;
586-
IPHONEOS_DEPLOYMENT_TARGET = 18.3;
588+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
587589
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
588590
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
589591
MTL_FAST_MATH = YES;
@@ -640,7 +642,7 @@
640642
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
641643
GCC_WARN_UNUSED_FUNCTION = YES;
642644
GCC_WARN_UNUSED_VARIABLE = YES;
643-
IPHONEOS_DEPLOYMENT_TARGET = 18.3;
645+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
644646
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
645647
MTL_ENABLE_DEBUG_INFO = NO;
646648
MTL_FAST_MATH = YES;
@@ -658,7 +660,7 @@
658660
CURRENT_PROJECT_VERSION = 0;
659661
DEVELOPMENT_TEAM = ZY6BPTGK47;
660662
GENERATE_INFOPLIST_FILE = YES;
661-
IPHONEOS_DEPLOYMENT_TARGET = 18.3;
663+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
662664
MARKETING_VERSION = 0.0;
663665
PRODUCT_BUNDLE_IDENTIFIER = blastsoftstudios.djangofilesTests;
664666
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -677,7 +679,7 @@
677679
CURRENT_PROJECT_VERSION = 0;
678680
DEVELOPMENT_TEAM = ZY6BPTGK47;
679681
GENERATE_INFOPLIST_FILE = YES;
680-
IPHONEOS_DEPLOYMENT_TARGET = 18.3;
682+
IPHONEOS_DEPLOYMENT_TARGET = 18.0;
681683
MARKETING_VERSION = 0.0;
682684
PRODUCT_BUNDLE_IDENTIFIER = blastsoftstudios.djangofilesTests;
683685
PRODUCT_NAME = "$(TARGET_NAME)";

Django FilesUITests/Django_FilesUITests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ final class Django_FilesUITests: XCTestCase {
4444
// Skip performance testing in simulator as it's not reliable
4545
return
4646
#else
47-
if #available(iOS 18.3, *) {
47+
if #available(iOS 18.0, *) {
4848
// This measures how long it takes to launch your application.
4949
measure(metrics: [XCTApplicationLaunchMetric()]) {
5050
XCUIApplication().launch()

0 commit comments

Comments
 (0)