Skip to content

Commit

Permalink
[Update] RAnalytics (9.8.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
J. Doe (https://devcenter.bitrise.io/builds/setting-your-git-credentials-on-build-machines/) committed Mar 23, 2023
1 parent 7f6e502 commit 88aed8c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions RAnalytics/9.8.1/RAnalytics.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Pod::Spec.new do |s|
s.name = "RAnalytics"
s.version = "9.8.1"
s.authors = "Rakuten Ecosystem Mobile"
s.summary = "Records user activity and automatically sends tracking events to an analytics cloud service."
s.homepage = "https://github.com/rakutentech"
s.license = { :type => 'Proprietary', :text => '© Rakuten Group, Inc.' }
s.source = { :http => "https://github.com/rakutentech/ios-analytics-framework/releases/download/#{s.version.to_s}/RAnalyticsRelease-v#{s.version.to_s}.zip" }
s.platform = :ios, "12.0"
s.swift_versions = ['5.4', '5.5']
s.vendored_frameworks = "RAnalytics.xcframework"
s.documentation_url = "https://github.com/rakutentech/ios-analytics-framework"
options = {
'CLANG_ENABLE_MODULES' => 'YES',
'CLANG_MODULES_AUTOLINK' => 'YES',
'GCC_C_LANGUAGE_STANDARD' => 'gnu99',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
# FIXME: `pod lib lint` attempts to build all available archs so we need to exclude Apple Silicon arm64 from simulator builds.
# See https://github.com/CocoaPods/CocoaPods/issues/10065#issuecomment-694266259
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.pod_target_xcconfig = options
s.user_target_xcconfig = options
s.weak_frameworks = [
'Foundation',
'UIKit',
'CoreGraphics',
'CoreLocation',
'AdSupport'
]
s.libraries = 'sqlite3', 'z'
end

0 comments on commit 88aed8c

Please sign in to comment.