pankaj nigam
pankaj nigam

Reputation: 401

pod framework not loading in ios 13.3.1

My project is working perfectly fine on Simulator but the moment I am installing on Device I am getting following issues.

dyld: Library not loaded:

Following point to consider while digging into issue Membership: Using free account to install project in device. iOS Version: 13.3.1 Use any pod library

Looks like this problem in only with 13.1.1. Can some one check with other iOS Version.

Steps:

 1. Create New project
 2: Add any pod 
 3: install pod 
 4: Run on Device 

Complete Error: dyld: Library not loaded: @rpath/MDFInternationalization.framework/MDFInternationalization

  Referenced from: /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/TestProjectForDynamicViews

  Reason: no suitable image found.  Did find:

    /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization: code signature invalid for '/private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization'



    /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization: stat() failed with errno=25

    /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization: code signature invalid for '/private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization'



    /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization: stat() failed with errno=1

    /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization: code signature invalid for '/private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization'



    /private/var/containers/Bundle/Application/1DFBADF5-AB1A-4400-90E7-B1AA35CAE4A5/TestProjectForDynamicViews.app/Frameworks/MDFInternationalization.framework/MDFInternationalization: stat() failed with errno=1

Upvotes: 0

Views: 339

Answers (2)

Shivam Parmar
Shivam Parmar

Reputation: 1570

i got the same error and peoples are suggesting that doing these steps and it works:

  • remove/comment use_frameworks! in Podfile
  • add use_modular_headers! in Podfile
  • pod update
  • pod install
  • clean and run

solves the issue with using free Apple ID on iOS 13.3.X

from :- App runs perfectly on simulators but not on physical devices [on iOS 13.3.1]

Upvotes: 1

Mohammed Elnaggar
Mohammed Elnaggar

Reputation: 138

This is a new update from Apple

Check this Answer, it would be helpful.

Upvotes: 0

Related Questions