-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |