16 lines
621 B
Ruby
16 lines
621 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'DailyNotificationPlugin'
|
|
s.version = '1.0.0'
|
|
s.summary = 'Daily notification plugin for Capacitor'
|
|
s.license = 'MIT'
|
|
s.homepage = 'https://github.com/timesafari/daily-notification-plugin'
|
|
s.author = 'TimeSafari'
|
|
s.source = { :git => 'https://github.com/timesafari/daily-notification-plugin.git', :tag => s.version.to_s }
|
|
s.source_files = 'Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
s.ios.deployment_target = '13.0'
|
|
s.dependency 'Capacitor'
|
|
s.dependency 'CapacitorCordova'
|
|
s.swift_version = '5.1'
|
|
s.module_name = 'DailyNotificationPlugin'
|
|
s.static_framework = true
|
|
end |