<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: phoenixharoz</title>
    <description>The latest articles on DEV Community by phoenixharoz (@sikandarkhan).</description>
    <link>https://dev.to/sikandarkhan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F110836%2F90770752-d8c0-49de-8cdd-1199e0707831.jpeg</url>
      <title>DEV Community: phoenixharoz</title>
      <link>https://dev.to/sikandarkhan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sikandarkhan"/>
    <language>en</language>
    <item>
      <title>Missing file libarclite_iphoneos.a (Xcode 14.3)</title>
      <dc:creator>phoenixharoz</dc:creator>
      <pubDate>Tue, 13 Jun 2023 15:45:35 +0000</pubDate>
      <link>https://dev.to/sikandarkhan/missing-file-libarcliteiphoneosa-xcode-143-3d35</link>
      <guid>https://dev.to/sikandarkhan/missing-file-libarcliteiphoneosa-xcode-143-3d35</guid>
      <description>&lt;p&gt;Error : &lt;br&gt;
File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a&lt;/p&gt;

&lt;p&gt;Recently I started getting this error on my Xcode 14.3 iOS 16.4 project setup. Realised that many devs are having this issues. I managed to resolve this error by &lt;/p&gt;

&lt;p&gt;&lt;code&gt;wanted_project_target = 11.0&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
      target.build_configurations.each do |config|
        current_project_target = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f

        if current_project_target &amp;lt; wanted_project_target
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = wanted_project_target.to_s
        end
      end
    end
  end
end
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>xcode14</category>
      <category>ios16</category>
      <category>iphoneosa</category>
    </item>
  </channel>
</rss>
