簡體   English   中英

如何調試“安裝失敗”消息?

[英]How can I debug a "Failed to install" message?

我目前正在嘗試使用 Xamarin.forms 開發跨平台移動應用程序。 作為此應用程序的一部分,我需要在我的 Xamarin.iOS 項目中包含一個 3rd 方 .framework。 我已成功創建了 Xamarin.iOS 綁定庫 .dll 並將其包含在我的項目中。 我能夠引用該庫並進行編譯而不會出錯,但是當我嘗試將該應用程序部署到 iPhone 模擬器時,該應用程序將啟動然后崩潰並顯示“無法安裝”消息。

錯誤信息

如果我刪除任何引用此 .dll 的代碼行,應用程序將運行良好。

有沒有人對如何解決這個問題有任何見解?

可能有用的信息:
我正在 Visual Studio for Windows 中開發
Xamarin 版本:16.7.000.440
Xamarin.iOS 版本:13.20.2.2
XCode 版本:12.0.1
iOS版本:14.0

設備崩潰日志:

Incident Identifier: 882D82AB-5511-48C1-AFCD-4B86933B2A5C  
CrashReporter Key:   1cc59f0bc819c0d806e2c1ccdf7b24a413699a4f  
Hardware Model:      iPad7,11  
Process:             MyApp.iOS [452]  
Path:                /private/var/containers/Bundle/Application/A31E102C-4BB8-431A-ABDF-E17A503E1778/MyApp.iOS.app/MyApp.iOS  
Identifier:          com.Crossroads.MyApp  
Version:             1.0 (1.0)  
Code Type:           ARM-64 (Native)  
Role:                Foreground  
Parent Process:      launchd [1]  
Coalition:           com.Crossroads.MyApp [614]  


Date/Time:           2020-10-16 09:46:53.9542 -0500  
Launch Time:         2020-10-16 09:46:53.9106 -0500  
OS Version:          iPhone OS 13.5.1 (17F80)  
Release Type:        User  
Baseband Version:    n/a  
Report Version:      104  

Exception Type:  EXC_CRASH (SIGABRT)  
Exception Codes: 0x0000000000000000, 0x0000000000000000  
Exception Note:  EXC_CORPSE_NOTIFY  
Termination Description: DYLD, dependent dylib '@rpath/MyFramework.framework/MyFramework' not found for '/private/var/containers/Bundle/Application/A31E102C-4BB8-431A-ABDF-E17A503E1778/MyApp.iOS.app/MyApp.iOS', tried but didn't find: '@rpath/MyFramework.framework/MyFramework' '/System/Library/Frameworks/MyFramework.framework/MyFramework'  
Highlighted by Thread:  0  

Backtrace not available  

Unknown thread crashed with ARM Thread State (64-bit):  
    x0: 0x0000000000000006   x1: 0x0000000000000001   x2: 0x000000016b701390   x3: 0x00000000000000c7  
    x4: 0x000000016b700f90   x5: 0x0000000000000000   x6: 0x0000000000000000   x7: 0x0000000000000000  
    x8: 0x0000000000000020   x9: 0x0000000000000009  x10: 0x6f4d706163617461  x11: 0x656b6f54656c6962  
   x12: 0x6f77656d6172662e  x13: 0x63617461442f6b72  x14: 0x656c69626f4d7061  x15: 0x0020276e656b6f54  
   x16: 0x0000000000000209  x17: 0x0000000000000000  x18: 0x0000000000000000  x19: 0x0000000000000000  
   x20: 0x000000016b700f90  x21: 0x00000000000000c7  x22: 0x000000016b701390  x23: 0x0000000000000001  
   x24: 0x0000000000000006  x25: 0x0000000106cd4000  x26: 0x0000000000000001  x27: 0x0000000106cd4000  
   x28: 0x0000000000000000   fp: 0x000000016b700f60   lr: 0x0000000106cbbee8  
    sp: 0x000000016b700f20   pc: 0x0000000106cb4f68 cpsr: 0x00000000  
   esr: 0x00000000  Address size fault  

Binary images description not available  

Error Formulating Crash Report:  
Failed to create CSSymbolicatorRef - corpse still valid ¯\_(ツ)_/¯  

EOF

從蘋果文檔中,錯誤意味着您已經鏈接了框架,而沒有將其嵌入。

應用程序在啟動時崩潰,因為動態鏈接器無法找到丟失的框架。

所以你需要做的是ember框架,這里是你可以參考的文檔:

鏈接依賴項

綁定目標-c

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM