What is causing this Crashlytics compile warning? (Auto-Linking supplied '…' framework linker option at '…' is not a dylib)

前端 未结 6 1301
你的背包
你的背包 2020-12-03 04:05

Compiling my main target (not a test target like here) yields this error:

ld: warning: Auto-Linking supplied 
   \'~/Documents/my_app/MyApp/Crashlytics.frame         


        
6条回答
  •  难免孤独
    2020-12-03 04:52

    I followed all steps provided by @i'L'i but I was not able to find Crashlytics.framework and Fabric.framework file in build phases.

    So this helped me.

    Step 1: Follow all the steps given Here.

    Step 2: Now when you are unable to find Crashlytics.framework and Fabric.framework files in Link Binary With Libraries by clicking + do following.

    2.1: Click on + button in Link Binary With Libraries.
    2.2: Click on Add Other... button.
    2.3: Now chose Crashlytic.framework and Fabric.framework from Pod folder - if using cocoapods, else choose both file from where you have downloaded it.

    Step 3: Build Succeeded, Enjoy. :)

提交回复
热议问题