-
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
Nishan
committed
Dec 9, 2021
1 parent
5a7f76e
commit 26b0569
Showing
1 changed file
with
24 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,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "AmityUIKit" | ||
s.version = "2.7.0" | ||
s.summary = "A brief description of AmityUIKit project." | ||
s.description = "An extended description of AmityUIKit project." | ||
s.homepage = "https://github.com/EkoCommunications/EkoMessagingSDKUIKit" | ||
s.license = { :type => 'Copyright', :text => <<-LICENSE | ||
Copyright 2020 | ||
Permission is granted to... | ||
LICENSE | ||
} | ||
s.author = { "$(git config user.name)" => "$(git config user.email)" } | ||
s.source = { :http => 'https://s3-ap-southeast-1.amazonaws.com/ekosdk-release/ios-uikit/2.7.0/uikit.zip' } | ||
s.vendored_frameworks = 'AmityUIKit.xcframework', 'AmitySDK.xcframework' | ||
s.platform = :ios | ||
s.swift_version = "5" | ||
s.ios.deployment_target = '12.0' | ||
s.dependency 'Realm', '~> 10.12.0' | ||
|
||
# Exclude arm64 architecture | ||
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
|
||
end |