# @microsoft/fraud-protection.podspec require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "fraud-protection" s.version = package["version"] s.summary = package["description"] s.homepage = "https://docs.microsoft.com/en-us/dynamics365/fraud-protection/mobile-sdk-ios" s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = 'Microsoft Corporation' s.platforms = { :ios => "12.4" } s.source = { :git => "https://github.com/microsoft/FraudProtection-SDK-IOS.git"} s.source_files = "ios/**/*.{h,c,cc,cpp,m,mm,swift}" s.requires_arc = true s.dependency "React" s.dependency 'FraudProtection', '2.2.1' end