Skip to content

Commit

Permalink
Fix Podfile lib lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSiddhant committed Nov 30, 2023
1 parent c9f6d9e commit c0f5375
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions SwiftLogger.podspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
Pod::Spec.new do |s|
s.name = 'SwiftLogger'
s.version = '1.0.0'
s.version = '1.0.1'
s.license = 'MIT'
s.summary = 'Make XCode Console log more readable'
s.homepage = 'https://github.com/0xSiddhant/SwiftLogger'
s.authors = { '0xSiddhant' => 'contactsiddhant2155@gmail.com' }
s.source = { :git => 'https://github.com/0xSiddhant/SwiftLogger.git', :tag => s.version }
s.source = { :git => 'https://github.com/0xSiddhant/SwiftLogger.git', :tag => s.version.to_s }
s.documentation_url = 'https://alamofire.github.io/Alamofire/'

s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.ios.deployment_target = '11.0'

s.swift_versions = ['5']
s.swift_versions = ['5.4']

s.source_files = 'Source/*.swift'
s.source_files = 'Sources/*/*.swift'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end

0 comments on commit c0f5375

Please sign in to comment.