Skip to content

Instantly share code, notes, and snippets.

@kushwaha03
Created January 19, 2021 13:55
Show Gist options
  • Save kushwaha03/57537bd93d330c87269248c2adf00d25 to your computer and use it in GitHub Desktop.
Save kushwaha03/57537bd93d330c87269248c2adf00d25 to your computer and use it in GitHub Desktop.
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' => 'krishna@gmail.com' }
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