How to Fix Use Legacy Swift issue in Xcode 8 Beta 3

How to Fix Use Legacy Swift issue in Xcode 8 Beta 3

Dependency Analysis Error Group
“Use Legacy Swift Language Version” (SWIFT_VERSION) is required to be configured correctly for targets which use Swift. Use the [Edit > Convert > To Current Swift Syntax…] menu to choose a Swift version or use the Build Settings editor to configure the build setting directly.

CocoaPods Fix
If you are using CocoaPods to install frameworks and you want this to be fixed automatically every time you are doing a pod install, then you can add these lines to the end of yourPodfile:

 

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end

Manually Embedded Framework
This is also very simple. All you need to do is go to Build Settings for the framework and to be safe your main project. Scroll down – It is right near the bottom and look for Use Legacy Swift Language Version. To the Right, there are three options when you click:

Unspecified
Yes
No

Use legacy swift issue

Using Objective-C?
If you keep getting the Legacy Swift issue and you’re using Objective-C you might be pulling your hair out. First, Check that none of your added frameworks are using Swift. If they’re not, check your Core Data model output.

objective c legacy swift issue

There you have it, a quick way to fix the Legacy Swift issue in Xcode 8 Beta 3.


Discover more from CODE t!ps

Subscribe to get the latest posts sent to your email.

Scroll to Top

Discover more from CODE t!ps

Subscribe now to keep reading and get access to the full archive.

Continue reading