UNPKG

666 BPlain TextView Raw
1require "json"
2
3package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4
5Pod::Spec.new do |s|
6 s.name = "appconsent-clear-reactnative"
7 s.version = package["version"]
8 s.summary = package["description"]
9 s.homepage = package["homepage"]
10 s.license = package["license"]
11 s.authors = package["author"]
12
13 s.platforms = { :ios => "12.0" }
14 s.source = { :git => "https://gitlab.datalf.chat/sfbx/dev/appconsent/cmp/mobile/react-native/appconsent-clear-reactnative.git", :tag => "#{s.version}" }
15
16 s.source_files = "ios/**/*.{h,m,mm,swift}"
17
18 s.dependency "React-Core"
19 s.dependency "AppConsent", "4.4.2"
20end