nativescript-textinputlayout icon indicating copy to clipboard operation
nativescript-textinputlayout copied to clipboard

Problems to build in IOS

Open edrick27 opened this issue 5 years ago • 1 comments

I have Xcode 10, Swift 4.0 and Nativescript 4.2. when I try to build project for IOS get follow menssage

error: Value for SWIFT_VERSION cannot be empty. (in target 'SkyFloatingLabelTextField') note: Using new build systemnote: Planning buildnote: Constructing build description ** ARCHIVE FAILED **

edrick27 avatar Oct 17 '18 15:10 edrick27

In your POD file.

Btw Swift 3 is being depreciated and this plugin is also no longer maintained.

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

Skintillion avatar Nov 17 '18 22:11 Skintillion