Skip to content
Merged
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0996e39
Adding Podspec for Cordova library
bhariharan Feb 21, 2019
78c8abf
Merge branch 'master' into podspec
bhariharan Feb 27, 2019
9409ff1
Merge branch 'master' into podspec
bhariharan Mar 2, 2019
73aeac6
Addressing some feedback
bhariharan May 5, 2019
c71841c
Merge branch 'master' into podspec
bhariharan May 5, 2019
09e4ab7
Merge branch 'master' into podspec
bhariharan Sep 22, 2019
debf555
Merge branch 'master' into podspec
bhariharan Dec 1, 2019
d2db91d
Adding logic to auto-parse and set release version in Podspec
bhariharan Dec 1, 2019
6e29eef
First stab at adding auto-update script
bhariharan Dec 2, 2019
a3445b9
Updating permissions of script
bhariharan Dec 2, 2019
1a8e899
Updating comments
bhariharan Dec 2, 2019
78fbf78
Merge branch 'master' into podspec
bhariharan Dec 20, 2019
6d1917e
Merge branch 'master' into podspec
bhariharan Dec 26, 2019
6471136
Merge branch 'master' into podspec
bhariharan Jan 9, 2020
dfb1b25
Merge branch 'master' into podspec
bhariharan Feb 11, 2020
7b49ea6
Bumping up iOS version to 11.0
bhariharan Feb 11, 2020
d8cd2e4
Merge branch 'master' into podspec
bhariharan Feb 13, 2020
fc3ebe6
Updating podspec
bhariharan Feb 13, 2020
0b4d9d6
Merge branch 'master' into podspec
bhariharan Feb 17, 2020
9a7d45f
Updated podspec
bhariharan Feb 17, 2020
093ff91
Merge branch 'master' into podspec
bhariharan Feb 20, 2020
f8b3a48
Adding preserve_paths and frameworks to podspec
bhariharan Feb 20, 2020
371fcf4
Merge branch 'master' into podspec
bhariharan Mar 10, 2020
8b9399e
Latest podspec
bhariharan Mar 10, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions Cordova.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "5.1.0"
Comment thread
erisu marked this conversation as resolved.
Outdated
s.summary = "Cordova for iOS"
Comment thread
erisu marked this conversation as resolved.
Outdated
s.homepage = "https://github.com/apache/cordova-ios"
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
s.author = { "Bharath Hariharan" => "bhariharan@salesforce.com" }
Comment thread
erisu marked this conversation as resolved.
Outdated
s.platform = :ios, "11.0"
Comment thread
erisu marked this conversation as resolved.
s.source = { :git => "https://github.com/apache/cordova-ios.git",
:tag => "{s.version}",
Comment thread
erisu marked this conversation as resolved.
Outdated
:submodules => true }
s.requires_arc = true
s.default_subspec = 'Cordova'
s.subspec 'Cordova' do |cordova|
cordova.source_files = 'CordovaLib/Classes/**/*.{h,m}', 'CordovaLib/Cordova/Cordova.h'
cordova.public_header_files = 'CordovaLib/Classes/Public/CDV.h', 'CordovaLib/Classes/Public/CDVAppDelegate.h', 'CordovaLib/Classes/Public/CDVAvailability.h', 'CordovaLib/Classes/Public/CDVAvailabilityDeprecated.h', 'CordovaLib/Classes/Public/CDVCommandDelegate.h', 'CordovaLib/Classes/Public/CDVCommandDelegateImpl.h', 'CordovaLib/Classes/Public/CDVCommandQueue.h', 'CordovaLib/Classes/Public/CDVConfigParser.h', 'CordovaLib/Classes/Public/CDVInvokedUrlCommand.h', 'CordovaLib/Classes/Public/CDVPlugin+Resources.h', 'CordovaLib/Classes/Public/CDVPlugin.h', 'CordovaLib/Classes/Public/CDVPluginResult.h', 'CordovaLib/Classes/Public/CDVScreenOrientationDelegate.h', 'CordovaLib/Classes/Public/CDVTimer.h', 'CordovaLib/Classes/Public/CDVURLProtocol.h', 'CordovaLib/Classes/Public/CDVUserAgentUtil.h', 'CordovaLib/Classes/Public/CDVViewController.h', 'CordovaLib/Classes/Public/CDVWebViewEngineProtocol.h', 'CordovaLib/Classes/Public/CDVWhitelist.h', 'CordovaLib/Classes/Public/NSDictionary+CordovaPreferences.h', 'CordovaLib/Classes/Public/NSMutableArray+QueueAdditions.h', 'CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewDelegate.h', 'CordovaLib/Cordova/Cordova.h'
Comment thread
erisu marked this conversation as resolved.
Outdated
cordova.prefix_header_contents = ''
cordova.requires_arc = true
Comment thread
erisu marked this conversation as resolved.
end
end

#
# ATTENTION:
#
# This file needs to be updated manually whenever a Cordova upgrade is performed.
# Sections that need to be updated:
# 1. {s.version} should be the latest version of Cordova.
# 2. {s.platform} should be updated if the minimum version of iOS has changed.
# 3. {cordova.source_files} should be updated if the path of the library has changed.
# 4. {cordova.public_header_files} should be updated, by removing the public headers
# that have been removed and adding the public headers that have been added.
#