Skip to content

Commit

Permalink
🍏 Add Cocoapods support with AppcuesNotificationService.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt committed May 6, 2024
1 parent 410789c commit 1fac206
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions AppcuesNotificationService.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# To validate: `$ pod lib lint AppcuesNotificationService.podspec

Pod::Spec.new do |s|
s.name = 'AppcuesNotificationService'
s.version = '0.1.0'
s.summary = 'Provide rich push notifications via Appcues'

s.description = <<-DESC
A Swift library for providing rich push notifications via Appcues.
DESC

s.homepage = 'https://github.com/appcues/appcues-ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Appcues' => 'mobile@appcues.com' }
s.source = { :git => 'https://github.com/appcues/appcues-ios-sdk.git', :tag => s.version.to_s }

s.swift_version = '5.0'
s.ios.deployment_target = '11.0'

s.source_files = 'Sources/AppcuesNotificationService/**/*.swift'
s.exclude_files = 'Sources/AppcuesNotificationService/AppcuesNotificationService.docc'
end

0 comments on commit 1fac206

Please sign in to comment.