require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "react-native-okaycamplus" s.version = package["version"] s.summary = package["description"] s.description = <<-DESC react-native-okaycamplus DESC s.homepage = "https://gitlab.com/innov8tif/innov8tif-ekyc-product/okaycam-dev/mobile/okaycamplus-react-native.git" # brief license entry: s.license = "MIT" # optional - use expanded license entry instead: # s.license = { :type => "MIT", :file => "LICENSE" } s.authors = { "Innov8tif" => "ekyc.team@innov8tif.com" } s.platforms = { :ios => "15.6" } s.swift_version = '5.0' s.source = { :git => "https://gitlab.com/innov8tif/innov8tif-ekyc-product/okaycam-dev/mobile/okaycamplus-react-native.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,c,m,swift}" s.requires_arc = true s.static_framework = true s.dependency "React" s.dependency "OkayCamPlus", "2.0.9" # Include the xcframeworks s.vendored_frameworks = 'Frameworks/IDLiveFaceCamera.xcframework', 'Frameworks/IDLiveFaceDetection.xcframework', 'Frameworks/IDLiveFaceIAD.xcframework', 'OkayCamPlus.xcframework' end