-
Notifications
You must be signed in to change notification settings - Fork 19
/
BrazeUICompat.podspec
29 lines (23 loc) · 1.17 KB
/
BrazeUICompat.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
Pod::Spec.new do |s|
s.name = 'BrazeUICompat'
s.version = '11.3.0'
s.summary = 'Compatibility UI library for users migrating from AppboyUI.'
s.homepage = 'https://braze.com'
s.documentation_url = 'https://braze-inc.github.io/braze-swift-sdk/documentation/brazeui/'
s.license = { :type => 'Commercial' }
s.authors = 'Braze, Inc.'
s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.3.0' }
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.source_files = 'Sources/BrazeUICompat/ABK*/**/*.{h,m}'
s.public_header_files = 'Sources/BrazeUICompat/ABK*/**/*.h'
s.resource_bundles = { 'BrazeUICompat' => 'Sources/BrazeUICompat/*/Resources/**/*.*' }
s.static_framework = true
s.dependency 'BrazeKitCompat', '11.3.0'
s.dependency 'SDWebImage', '>= 5.19.7', '< 6'
s.user_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'OTHER_CFLAGS' => '-Wno-deprecated-declarations -Wno-deprecated-implementations'
}
end