@capacitor/ios 8.0.0-nightly-20250728T150658.0 → 8.0.0-nightly-20250730T150636.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Capacitor.podspec +1 -1
- package/CapacitorCordova.podspec +1 -1
- package/package.json +2 -2
- package/scripts/pods_helpers.rb +3 -3
package/Capacitor.podspec
CHANGED
|
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
|
|
|
12
12
|
s.summary = 'Capacitor for iOS'
|
|
13
13
|
s.license = 'MIT'
|
|
14
14
|
s.homepage = 'https://capacitorjs.com/'
|
|
15
|
-
s.ios.deployment_target = '
|
|
15
|
+
s.ios.deployment_target = '15.0'
|
|
16
16
|
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
|
|
17
17
|
s.source = { git: 'https://github.com/ionic-team/capacitor.git', tag: package['version'] }
|
|
18
18
|
s.source_files = "#{prefix}Capacitor/Capacitor/**/*.{swift,h,m}"
|
package/CapacitorCordova.podspec
CHANGED
|
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
|
|
|
15
15
|
s.license = 'MIT'
|
|
16
16
|
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
|
|
17
17
|
s.source = { git: 'https://github.com/ionic-team/capacitor', tag: s.version.to_s }
|
|
18
|
-
s.platform = :ios,
|
|
18
|
+
s.platform = :ios, 15.0
|
|
19
19
|
s.source_files = "#{prefix}CapacitorCordova/CapacitorCordova/**/*.{h,m}"
|
|
20
20
|
s.public_header_files = "#{prefix}CapacitorCordova/CapacitorCordova/Classes/Public/*.h",
|
|
21
21
|
"#{prefix}CapacitorCordova/CapacitorCordova/CapacitorCordova.h"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/ios",
|
|
3
|
-
"version": "8.0.0-nightly-
|
|
3
|
+
"version": "8.0.0-nightly-20250730T150636.0",
|
|
4
4
|
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
|
|
5
5
|
"homepage": "https://capacitorjs.com",
|
|
6
6
|
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"xc:build:CapacitorCordova": "cd CapacitorCordova && xcodebuild && cd .."
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@capacitor/core": "^8.0.0-nightly-
|
|
28
|
+
"@capacitor/core": "^8.0.0-nightly-20250730T150636.0"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
package/scripts/pods_helpers.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
def assertDeploymentTarget(installer)
|
|
2
2
|
installer.pods_project.targets.each do |target|
|
|
3
3
|
target.build_configurations.each do |config|
|
|
4
|
-
# ensure IPHONEOS_DEPLOYMENT_TARGET is at least
|
|
4
|
+
# ensure IPHONEOS_DEPLOYMENT_TARGET is at least 15.0
|
|
5
5
|
deployment_target = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f
|
|
6
|
-
should_upgrade = deployment_target <
|
|
6
|
+
should_upgrade = deployment_target < 15.0 && deployment_target != 0.0
|
|
7
7
|
if should_upgrade
|
|
8
|
-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '
|
|
8
|
+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
end
|