Skip to content

Commit 269bf4b

Browse files
authored
fix: iOS 17.0 target version for widget (#19308)
1 parent f9435a5 commit 269bf4b

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

mobile/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 54;
6+
objectVersion = 77;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -117,8 +117,6 @@
117117
/* Begin PBXFileSystemSynchronizedRootGroup section */
118118
B2CF7F8C2DDE4EBB00744BF6 /* Sync */ = {
119119
isa = PBXFileSystemSynchronizedRootGroup;
120-
exceptions = (
121-
);
122120
path = Sync;
123121
sourceTree = "<group>";
124122
};
@@ -473,10 +471,14 @@
473471
inputFileListPaths = (
474472
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
475473
);
474+
inputPaths = (
475+
);
476476
name = "[CP] Copy Pods Resources";
477477
outputFileListPaths = (
478478
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
479479
);
480+
outputPaths = (
481+
);
480482
runOnlyForDeploymentPostprocessing = 0;
481483
shellPath = /bin/sh;
482484
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
@@ -505,10 +507,14 @@
505507
inputFileListPaths = (
506508
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
507509
);
510+
inputPaths = (
511+
);
508512
name = "[CP] Embed Pods Frameworks";
509513
outputFileListPaths = (
510514
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
511515
);
516+
outputPaths = (
517+
);
512518
runOnlyForDeploymentPostprocessing = 0;
513519
shellPath = /bin/sh;
514520
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
@@ -865,7 +871,7 @@
865871
INFOPLIST_FILE = WidgetExtension/Info.plist;
866872
INFOPLIST_KEY_CFBundleDisplayName = Widget;
867873
INFOPLIST_KEY_NSHumanReadableCopyright = "";
868-
IPHONEOS_DEPLOYMENT_TARGET = 18.5;
874+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
869875
LD_RUNPATH_SEARCH_PATHS = (
870876
"$(inherited)",
871877
"@executable_path/Frameworks",
@@ -908,7 +914,7 @@
908914
INFOPLIST_FILE = WidgetExtension/Info.plist;
909915
INFOPLIST_KEY_CFBundleDisplayName = Widget;
910916
INFOPLIST_KEY_NSHumanReadableCopyright = "";
911-
IPHONEOS_DEPLOYMENT_TARGET = 18.5;
917+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
912918
LD_RUNPATH_SEARCH_PATHS = (
913919
"$(inherited)",
914920
"@executable_path/Frameworks",
@@ -948,7 +954,7 @@
948954
INFOPLIST_FILE = WidgetExtension/Info.plist;
949955
INFOPLIST_KEY_CFBundleDisplayName = Widget;
950956
INFOPLIST_KEY_NSHumanReadableCopyright = "";
951-
IPHONEOS_DEPLOYMENT_TARGET = 18.5;
957+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
952958
LD_RUNPATH_SEARCH_PATHS = (
953959
"$(inherited)",
954960
"@executable_path/Frameworks",

mobile/ios/WidgetExtension/widgets/RandomWidget.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct RandomConfigurationAppIntent: WidgetConfigurationIntent {
4343
"Choose an album to show images from"
4444
}
4545

46-
@Parameter(title: "Album", default: NO_ALBUM)
46+
@Parameter(title: "Album")
4747
var album: Album?
4848

4949
@Parameter(title: "Show Album Name", default: false)

0 commit comments

Comments
 (0)