Derek Lawrence
Derek Lawrence

Reputation: 1608

Issues creating Xamarin IOS bindings library

I need to create a bindings library for the pushy framework from pushy.me

I have been going through this tutorial here.

http://blog.xhackers.co/xamarin-c-binding-of-a-cocoapods-ios-sdk-using-sharpie/

So I use the command "sharpie pod init Pushy"

this seems to work fine and I get the pod downloaded which has the pushy framework. I then use the command "sharpie pod bind" and it gives me an output Pods_ObjectiveSharpieIntegration.framework but there is no .a file associated with this. So from here I cant figure out how to import this into the xamarin ios project.

Any help would be awesome. Thanks this has been very confusing.

Upvotes: 1

Views: 423

Answers (2)

Jonah Hulselmans
Jonah Hulselmans

Reputation: 36

You can also bind frameworks. Xamarin has a guide for this. Binding Native Frameworks

Upvotes: 1

sunyt
sunyt

Reputation: 319

Open xxx/Pods/Pushy/PushySDK.framework ,the .a file is PushySDK (about 5M,there is no extension).

You can rename the file and then drag to the binding project

Upvotes: 4

Related Questions