From 53badffe61495ae212cb15d53ffa9d16add653e9 Mon Sep 17 00:00:00 2001 From: Ginger Date: Thu, 9 May 2024 20:24:12 +0800 Subject: [PATCH] version: ios 4.5.0 --- SampleCode/iOS/Podfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SampleCode/iOS/Podfile b/SampleCode/iOS/Podfile index e77edcc..58194e5 100644 --- a/SampleCode/iOS/Podfile +++ b/SampleCode/iOS/Podfile @@ -15,3 +15,12 @@ target 'NEMeetingDemo' do pod 'NEMeetingKit', '~> 4.5.0' end +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings["ENABLE_BITCODE"] = "NO" + config.build_settings["APPLICATION_EXTENSION_API_ONLY"] = "NO" + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' + end + end +end