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 = 'Matthew Raymer'
  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', '~> 5.0.0'
  s.dependency 'CapacitorCordova', '~> 5.0.0'
  s.swift_version = '5.1'
  s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) COCOAPODS=1' }
  s.deprecated = false
  s.static_framework = true
end