diff --git a/source/IOSResolver/src/IOSResolver.cs b/source/IOSResolver/src/IOSResolver.cs index eceb885b..b1d12f67 100644 --- a/source/IOSResolver/src/IOSResolver.cs +++ b/source/IOSResolver/src/IOSResolver.cs @@ -1048,7 +1048,7 @@ public static bool PodfileStaticLinkFrameworks { } /// - /// Ehether to enable Swift Framework support workaround. + /// Whether to enable Swift Framework support workaround. /// If enabled, iOS Resolver adds a Dummy.swift to the generated Xcode project, and change build // properties in order to properly include Swift Standard Libraries. /// @@ -2030,7 +2030,6 @@ internal static void AddDummySwiftFile( public static void OnPostProcessGenPodfile(BuildTarget buildTarget, string pathToBuiltProject) { if (!InjectDependencies() || !PodfileGenerationEnabled) return; - Log("OnPostProcessGenPodfile!", level: LogLevel.Error); GenPodfile(buildTarget, pathToBuiltProject); } diff --git a/source/IOSResolver/src/IOSResolverSettingsDialog.cs b/source/IOSResolver/src/IOSResolverSettingsDialog.cs index c7d0b8d7..bfcb7932 100644 --- a/source/IOSResolver/src/IOSResolverSettingsDialog.cs +++ b/source/IOSResolver/src/IOSResolverSettingsDialog.cs @@ -284,8 +284,8 @@ public void OnGUI() { settings.swiftLanguageVersion = EditorGUILayout.TextField(settings.swiftLanguageVersion); GUILayout.EndHorizontal(); - GUILayout.Label("Used to set 'SWIFT_VERSION' build setting in Xcode. Leave " + - "it blank to update it manually."); + GUILayout.Label("Used to override 'SWIFT_VERSION' build setting in Xcode. " + + "Leave it blank to prevent override."); } }