-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsharedAnalytics.podspec
27 lines (22 loc) · 1.04 KB
/
sharedAnalytics.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
Pod::Spec.new do |spec|
spec.name = 'SharedAnalytics'
spec.version = '0.5.0'
spec.homepage = 'manychat.com'
spec.source = { :git => 'https://github.com/aleksiosdev/SharedAnalyticsExample.git', :tag => "v#{spec.version}" }
spec.authors = 'Lavrinenko Aleksandr'
spec.license = ''
spec.summary = 'Framework with events and send analytics logic'
spec.static_framework = true
spec.vendored_frameworks = "build/cocoapods/SharedAnalytics.framework"
spec.libraries = "c++"
spec.preserve_paths = "**/*.*"
spec.module_name = "#{spec.name}_umbrella"
spec.pod_target_xcconfig = {
'KOTLIN_TARGET[sdk=iphonesimulator*]' => 'ios_x64',
'KOTLIN_TARGET[sdk=iphoneos*]' => 'ios_arm',
}
spec.prepare_command = <<-SCRIPT
set -ev
./gradlew --no-daemon 'releaseFatFramework' --stacktrace --info
SCRIPT
end