-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreact-native-cas.podspec
123 lines (96 loc) · 3.84 KB
/
react-native-cas.podspec
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
Pod::Spec.new do |s|
s.name = "react-native-cas"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.framework = "CleverAdsSolutions"
s.platforms = { :ios => "13.0" }
s.source = { :git => "https://github.com/TheLonelyAstronaut/react-native-cas.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm,swift}"
s.static_framework = true
s.dependency 'CleverAdsSolutions-Base', '~> 3.6.0'
if ENV['ENABLE_OPTIMAL'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Optimal', '~> 3.6.0'
end
if ENV['ENABLE_FAMILIES'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Families', '~> 3.6.0'
end
if ENV['ENABLE_GOOGLE'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/GoogleAds', '~> 3.6.0'
end
if ENV['ENABLE_UNITY'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/UnityAds', '~> 3.6.0'
end
if ENV['ENABLE_IRONSOURCE'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/IronSource', '~> 3.6.0'
end
if ENV['ENABLE_LIFTOFFMONETIZE'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/LiftoffMonetize', '~> 3.6.0'
end
if ENV['ENABLE_INMOBI'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/InMobi', '~> 3.6.0'
end
if ENV['ENABLE_KIDOZ'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Kidoz', '~> 3.6.0'
end
if ENV['ENABLE_SUPERAWESOME'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/SuperAwesome', '~> 3.6.0'
end
if ENV['ENABLE_MINTEGRAL'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Mintegral', '~> 3.6.0'
end
if ENV['ENABLE_CHARTBOOST'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Chartboost', '~> 3.6.0'
end
if ENV['ENABLE_DTEXCHANGE'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/DTExchange', '~> 3.6.0'
end
if ENV['ENABLE_CROSSPROMO'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/CrossPromo', '~> 3.6.0'
end
if ENV['ENABLE_APPLOVIN'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/AppLovin', '~> 3.6.0'
end
if ENV['ENABLE_PANGLE'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Pangle', '~> 3.6.0'
end
if ENV['ENABLE_AUDIENCENETWORK'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/AudienceNetwork', '~> 3.6.0'
end
if ENV['ENABLE_MYTARGET'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/MyTarget', '~> 3.6.0'
end
if ENV['ENABLE_BIGO'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/Bigo', '~> 3.6.0'
end
if ENV['ENABLE_YANDEXADS'] == '1' then
s.dependency 'CleverAdsSolutions-SDK/YandexAds', '~> 3.6.0'
end
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
if respond_to?(:install_modules_dependencies, true)
install_modules_dependencies(s)
else
s.dependency "React-Core"
# Don't install the dependencies when we run `pod install` in the old architecture.
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
"OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
}
s.dependency "React-RCTFabric"
s.dependency "React-Codegen"
s.dependency "RCT-Folly"
s.dependency "RCTRequired"
s.dependency "RCTTypeSafety"
s.dependency "ReactCommon/turbomodule/core"
end
end
end