File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments