Skip to content

Commit

Permalink
fix(ios): fixing podspec source paths (#5002)
Browse files Browse the repository at this point in the history
  • Loading branch information
elylucas committed Sep 2, 2021
1 parent f088f6b commit 6004a43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ios/Capacitor.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '12.0'
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
s.source = { :git => 'https://github.com/ionic-team/capacitor.git', :branch => "portals-dev" }
s.source_files = 'ios/Capacitor/Capacitor/*.{swift,h,m}', 'ios/Capacitor/Capacitor/Plugins/*.{swift,h,m}', 'ios/Capacitor/Capacitor/Plugins/**/*.{swift,h,m}'
s.module_map = 'ios/Capacitor/Capacitor/Capacitor.modulemap'
s.resources = ['ios/Capacitor/Capacitor/assets/native-bridge.js']
s.source_files = 'Capacitor/Capacitor/*.{swift,h,m}', 'Capacitor/Capacitor/Plugins/*.{swift,h,m}', 'Capacitor/Capacitor/Plugins/**/*.{swift,h,m}'
s.module_map = 'Capacitor/Capacitor/Capacitor.modulemap'
s.resources = ['Capacitor/Capacitor/assets/native-bridge.js']
s.dependency 'CapacitorCordova'
s.swift_version = '5.1'
end
6 changes: 3 additions & 3 deletions ios/CapacitorCordova.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Pod::Spec.new do |s|
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
s.source = { :git => 'https://github.com/ionic-team/capacitor', :tag => s.version.to_s }
s.platform = :ios, 12.0
s.source_files = 'ios/CapacitorCordova/CapacitorCordova/**/*.{h,m}'
s.public_header_files = 'ios/CapacitorCordova/CapacitorCordova/Classes/Public/*.h', 'ios/CapacitorCordova/CapacitorCordova/CapacitorCordova.h'
s.module_map = 'ios/CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap'
s.source_files = 'CapacitorCordova/CapacitorCordova/**/*.{h,m}'
s.public_header_files = 'CapacitorCordova/CapacitorCordova/Classes/Public/*.h', 'CapacitorCordova/CapacitorCordova/CapacitorCordova.h'
s.module_map = 'CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap'
s.requires_arc = true
s.framework = "WebKit"
end

0 comments on commit 6004a43

Please sign in to comment.