From eaf6e4abd5cb5b1163a9725f58c1d9add0155bd2 Mon Sep 17 00:00:00 2001 From: robsonfingo <47990393+robsonfingo@users.noreply.github.com> Date: Thu, 30 May 2019 16:26:12 -0700 Subject: [PATCH] Remove headers_build_phase from example's Podfile Fixes #106 --- example/ios/Podfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index f0a495f93..66ca6acc9 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -59,13 +59,9 @@ end post_install do |installer| installer.pods_project.targets.each do |target| - target.headers_build_phase.files.each do |file| - file.settings = { 'ATTRIBUTES' => ['Public'] } - end target.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' config.build_settings['SWIFT_VERSION'] = '4.0' end - end end