objective-sharpie

Xamarin ios bindings dll - Native linker cant find sdk

自闭症网瘾萝莉.ら 提交于 2020-01-06 15:18:24
问题 I'm attempting to bind the pushy.me obj-c framework. Ive run this through objective sharpie and get the output api definitons file and the framework. From here I build the file and get the output "PushySDK.dll" and reference it in my xamarin.ios project. But when I attempt to build the project I get a compile error. ugs-mobile-app/ugs_mobile_app.iOS/MTOUCH: Error MT5209: Native linking error: framework not found PushySDK (MT5209) (UGSMobileiOS) I've been doing some googling but cant really

Sharpie binding objective-c @protocols issue

安稳与你 提交于 2019-12-10 16:27:18
问题 I'm using sharpie bind command to get API interfaces for my iOS library for xamarin sharpie bind --namespace=XXX --sdk=iphoneos9.2 Headers/*.h Have issues with @protocol bindings: The type or namespace name `IProfileDelegate' could not be found. Are you missing an assembly reference? This is how it's generated: interface XLibrary : IProfileDelegate { [Wrap ("WeakProfileDelegate")] [NullAllowed] MB_ProfileDelegate ProfileDelegate { get; set; } I understand that it creates empty ProfileDelegate

Trouble binding Objective-C library to C# with Objective Sharpie

瘦欲@ 提交于 2019-12-02 00:56:37
问题 I'm attempting to walk through this guide: https://developer.xamarin.com/guides/ios/advanced_topics/binding_objective-c/walkthrough/ trying to create bindings for this github project: https://github.com/lminhtm/LMGaugeView Using Sharpie 3.4. I am running into the following issues: I cannot generate a Fat binary with the architectures i386 armv7 x86_64 arm64 because I am building against iOS11. I can only generate a Fat binary with architectures x86_64 and arm64 , attempting the others gives

Trouble binding Objective-C library to C# with Objective Sharpie

 ̄綄美尐妖づ 提交于 2019-12-01 20:46:13
I'm attempting to walk through this guide: https://developer.xamarin.com/guides/ios/advanced_topics/binding_objective-c/walkthrough/ trying to create bindings for this github project: https://github.com/lminhtm/LMGaugeView Using Sharpie 3.4. I am running into the following issues: I cannot generate a Fat binary with the architectures i386 armv7 x86_64 arm64 because I am building against iOS11. I can only generate a Fat binary with architectures x86_64 and arm64 , attempting the others gives me the error message invalid iOS deployment version, iOS 10 is the max deployment target for 32-bit