adideas commented on issue #966:
URL: https://github.com/apache/cordova-ios/issues/966#issuecomment-1095560474

   HI !
   
   Here is what helped me 
   - XCODE 13.3.1
   - NativeScript 8.0.2 cli
   - Platform IOS "6.5.2"
   
   STEP 1 (build.xcconfig)
   
   ```
   // xcode 13
   
EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64=arm64
 arm64e armv7 armv7s armv6 armv8
   EXCLUDED_ARCHS=$(inherited)
   
$(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_$(EFFECTIVE_PLATFORM_SUFFIX)__NATIVE_ARCH_64_BIT_$(NATIVE_ARCH_64_BIT))
   
   IPHONEOS_DEPLOYMENT_TARGET = 12.0
   ```
   
   
   STEP 2 (Podfile)
   
   ```
   pod 'CocoaAsyncSocket'
   
   post_install do |installer|
     installer.pods_project.targets.each do |target|
       target.build_configurations.each do |config|
         config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
         config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
         config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] 
='NO'
         config.build_settings['ONLY_ACTIVE_ARCH'] = 'YES'
       end
     end
   end
   
   IPHONEOS_DEPLOYMENT_TARGET = 12.0
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to