Skip to content

Commit dcb0de4

Browse files
committed
[Update] RAnalytics (9.6.0)
1 parent 36af569 commit dcb0de4

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Pod::Spec.new do |s|
2+
s.name = "RAnalytics"
3+
s.version = "9.6.0"
4+
s.authors = "Rakuten Ecosystem Mobile"
5+
s.summary = "Records user activity and automatically sends tracking events to an analytics cloud service."
6+
s.homepage = "https://github.com/rakutentech"
7+
s.license = { :type => 'Proprietary', :text => '© Rakuten Group, Inc.' }
8+
s.source = { :http => "https://github.com/rakutentech/ios-analytics-framework/releases/download/#{s.version.to_s}/RAnalyticsRelease-v#{s.version.to_s}.zip" }
9+
s.platform = :ios, "12.0"
10+
s.swift_versions = ['5.4', '5.5']
11+
s.vendored_frameworks = "RAnalytics.xcframework"
12+
s.documentation_url = "https://github.com/rakutentech/ios-analytics-framework"
13+
options = {
14+
'CLANG_ENABLE_MODULES' => 'YES',
15+
'CLANG_MODULES_AUTOLINK' => 'YES',
16+
'GCC_C_LANGUAGE_STANDARD' => 'gnu99',
17+
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
18+
# FIXME: `pod lib lint` attempts to build all available archs so we need to exclude Apple Silicon arm64 from simulator builds.
19+
# See https://github.com/CocoaPods/CocoaPods/issues/10065#issuecomment-694266259
20+
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
21+
}
22+
s.pod_target_xcconfig = options
23+
s.user_target_xcconfig = options
24+
s.weak_frameworks = [
25+
'Foundation',
26+
'UIKit',
27+
'CoreGraphics',
28+
'CoreLocation',
29+
'AdSupport'
30+
]
31+
s.libraries = 'sqlite3', 'z'
32+
end

0 commit comments

Comments
 (0)