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