1, Use of bitwise '|' with boolean operands
Use of bitwise '|' with boolean operands
2, underlying Objective-C module 'AEPServices' not found
在ios/Podfile 里添加
post_install do |installer|
installer.pods_project.targets.each do |target|
# if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
# end
# below code is fix underlying Objective-C module 'AEPServices' not found
if target.name.start_with?("AEP")
target.build_configurations.each do |bc|
bc.build_settings['OTHER_SWIFT_FLAGS'] = '$(inherited) -no-verify-emitted-module-interface'
end
end
end
end