SwiftyStoreKit icon indicating copy to clipboard operation
SwiftyStoreKit copied to clipboard

Support for M1 Mac simulator

Open Roen-Ro opened this issue 2 years ago • 3 comments

Roen-Ro avatar Aug 09 '21 02:08 Roen-Ro

Until Silicon is supported, try adding this to the end of your Podfile:

post_install do |installer_representation|
    installer_representation.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
            config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
        end
    end
end

fraank avatar Aug 16 '21 15:08 fraank

Pardon my ignorance but what would prevent pure-swift OS libs to run on another platform?

Reiszecke avatar Aug 19 '21 19:08 Reiszecke

perfect!

Roen-Ro avatar Dec 31 '21 03:12 Roen-Ro