Pod::Spec.new do |s| s.name = "CybavoWalletService" s.version = "1.0.1" s.summary = "CYBAVO Wallet App SDK" s.description = <<-DESC Use CYBAVO Wallet App SDK to easily develop secure wallets for your users without having to code any cryptography on your side. Our SDK allows you to perform the most common operations, such as creating a wallet, querying balances and executing cryptocurrency payments. DESC s.homepage = "https://www.cybavo.com/wallet-app-sdk/" s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" } if s.respond_to? 'swift_version' s.swift_version = '5.0' end if s.respond_to? 'swift_versions' s.swift_versions = ['5.0'] end s.author = { "CYBAVO" => "dev@cybavo.com" } s.platform = :ios, '15.1' s.source = { :path => '.' } s.source_files = '**/*.{h,m,swift}' s.public_header_files = '**/*.h' s.dependency 'React-Core' s.dependency 'React-Core/DevSupport' s.dependency 'ReactCommon' s.exclude_files = "Classes/Exclude" s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'RCT_NEW_ARCH_ENABLED' => '0' } s.dependency "CYBAVOWallet_static", "~> 1.3.51" end