-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtcconsent-react-native.podspec
More file actions
27 lines (23 loc) · 945 Bytes
/
tcconsent-react-native.podspec
File metadata and controls
27 lines (23 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "tcconsent-react-native"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
Commanders Act React Native Bridge
DESC
s.homepage = "https://github.com/commandersact/tcconsent-react-native"
s.license = { :type => "Commercial", :file => "LICENSE" }
s.authors = { "CommandersAct" => "mobile@commandersact.com" }
s.platforms = { :ios => "11.0" }
s.source = { :git => "https://github.com/commandersact/tcconsent-react-native.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,c,m,mm}"
s.requires_arc = true
s.swift_version = "5.0"
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.dependency 'React-Core'
s.dependency 'IOSV5-TCCore', '5.4.5'
s.dependency 'TCConsent', '5.3.8'
s.dependency 'TCIAB', '5.2.0'
end