Skip to content

Commit 2af5ee3

Browse files
committed
Enable Swift Framework Support Workaround ON by default
As more pods starting to use Swift Framework, this option is turned ON by default now.
1 parent c599ab3 commit 2af5ee3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/IOSResolver/src/IOSResolver.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ public static bool PodfileStaticLinkFrameworks {
10541054
/// </summary>
10551055
public static bool SwiftFrameworkSupportWorkaroundEnabled {
10561056
get { return settings.GetBool(PREFERENCE_SWIFT_FRAMEWORK_SUPPORT_WORKAROUND,
1057-
defaultValue: false); }
1057+
defaultValue: true); }
10581058
set {
10591059
settings.SetBool(PREFERENCE_SWIFT_FRAMEWORK_SUPPORT_WORKAROUND, value);
10601060
}

source/IOSResolver/src/IOSResolverSettingsDialog.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public void OnGUI() {
264264

265265
if (settings.podfileAddUseFrameworks) {
266266
GUILayout.BeginHorizontal();
267-
GUILayout.Label("Enable Swift Framework Support Workaround",
267+
GUILayout.Label("(Recommended) Enable Swift Framework Support Workaround",
268268
EditorStyles.boldLabel);
269269
settings.swiftFrameworkSupportWorkaroundEnabled =
270270
EditorGUILayout.Toggle(settings.swiftFrameworkSupportWorkaroundEnabled);

0 commit comments

Comments
 (0)