From f08b68666d0e6006dcdd3514c048d36e1a26a23c Mon Sep 17 00:00:00 2001 From: gaoshuaibin091 Date: Fri, 9 Jun 2023 16:22:56 +0800 Subject: [PATCH] Update .podspec files --- JYMagicCube.podspec | 5 +++-- JYWKJSEngine.podspec | 6 +++--- iOS/Example/Podfile | 7 +++++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/JYMagicCube.podspec b/JYMagicCube.podspec index ac3ceb3..50361c1 100644 --- a/JYMagicCube.podspec +++ b/JYMagicCube.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'JYMagicCube' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'Mobile dynamic solution' s.description = <<-DESC It is a complete cross-end native partial card dynamic display technology solution, @@ -21,7 +21,8 @@ Pod::Spec.new do |s| s.homepage = 'https://hellobike.yuque.com/org-wiki-nlsyth/hec0gc/mput57lpnzvhnh7k' s.author = 'hellobike' s.source = { :git => 'https://github.com/hellof2e/Wukong.git', :tag => s.version.to_s } - s.ios.deployment_target = '9.0' + s.ios.deployment_target = '10.0' + s.requires_arc = true s.static_framework = true s.source_files = 'iOS/JYMagicCube/Classes/**/*' s.resource_bundles = { diff --git a/JYWKJSEngine.podspec b/JYWKJSEngine.podspec index b677ffa..a3e324b 100644 --- a/JYWKJSEngine.podspec +++ b/JYWKJSEngine.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'JYWKJSEngine' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'js runtime engine.' s.description = <<-DESC js runtime engine of Wukong. @@ -17,9 +17,9 @@ Pod::Spec.new do |s| s.homepage = 'https://hellobike.yuque.com/org-wiki-nlsyth/hec0gc/mput57lpnzvhnh7k' s.author = 'hellobike' s.source = { :git => 'https://github.com/hellof2e/Wukong.git', :tag => s.version.to_s } - s.requires_arc = true + s.ios.deployment_target = '10.0' s.swift_version = '5.0' - s.ios.deployment_target = '9.0' + s.requires_arc = true s.static_framework = true s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' diff --git a/iOS/Example/Podfile b/iOS/Example/Podfile index b2e9a68..16cb5b1 100644 --- a/iOS/Example/Podfile +++ b/iOS/Example/Podfile @@ -1,12 +1,13 @@ source 'https://github.com/CocoaPods/Specs.git' use_frameworks! +platform :ios, '10.0' post_install do |installer| installer.generated_projects.each do |project| project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['CODE_SIGN_IDENTITY'] = '' - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0' end end end @@ -14,9 +15,11 @@ end target 'JYMagicCube_Example' do + # pod 'JYMagicCube' pod 'JYMagicCube', :path => '../../' + # pod 'JYWKJSEngine' pod 'JYWKJSEngine', :path => '../../', :modular_headers => true - + pod 'YogaKit', '~> 1.18.1' pod 'YYCache', '~> 1.0.4' pod 'YYCategories', '~> 1.0.4'