trust-wallet-ios icon indicating copy to clipboard operation
trust-wallet-ios copied to clipboard

Generate mnemonic words slowly

Open 453548460Anders opened this issue 6 years ago • 1 comments

Why do I put framework code into my own projects and generate mnemonic words slowly? -- framework is trustkeystore

453548460Anders avatar Oct 16 '18 09:10 453548460Anders

Try to add post_install do |installer| installer.pods_project.targets.each do |target| if ['JSONRPCKit'].include? target.name target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '3.0' end end if ['TrustKeystore'].include? target.name target.build_configurations.each do |config| config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule' end end end end

at end of your Pod file, need to set swift optimization level

manhlx3006 avatar Nov 19 '18 07:11 manhlx3006