Created
January 19, 2021 13:55
-
-
Save kushwaha03/57537bd93d330c87269248c2adf00d25 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Pod::Spec.new do |spec| | |
spec.name = 'mySDK' | |
spec.version = '1.0.0' | |
spec.summary = 'A mySDK is a' | |
spec.description = <<-DESC | |
Blah blah | |
DESC | |
spec.homepage = 'https://github.com/' | |
spec.license = { :type => 'MIT', :file => 'LICENSE' } | |
spec.author = { 'rk' => '[email protected]' } | |
spec.source = { :git => 'https://github.com/krishna/mySDK.git', :tag => '1.0.0' } | |
spec.ios.deployment_target = '11.0' | |
spec.subspec 'MySDK' do |c| | |
c.vendored_frameworks = 'mysdk/mySDK.framework' | |
end | |
spec.pod_target_xcconfig = { | |
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' | |
} | |
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment