Sulaiman Khan

Results 6 comments of Sulaiman Khan

Same. Couldn't use it with my UITest

add these on your pod file, this will solve the problem post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' end end end

i was stuck on this problem for last three days. finally this is solved by adding the below line of code on pod file: post_install do |installer| installer.pods_project.targets.each do |target|...

add these lines on your pod file and update post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' end end end