ibm123
ibm123

Reputation: 1254

Xamarin build cross platform sdk for native developers

I'm going to build a sdk target for android & ios developers. I thought maybe instead of writing it for objective c and java i will use mono cross platform to my advance.

The only issue is that xamarin can generate apk and ipa.

Is it possible to make it generate static library for xcode developers and jar file and android/java developers ?

Thanks

Upvotes: 0

Views: 136

Answers (2)

SharpMobileCode
SharpMobileCode

Reputation: 938

You won't be able to create static libraries or jar files with Xamarin for your Obj-C or Android apps to use. That's not supported. However, if you have a ton of business logic and others in a static library or jar file, you can create binding libraries and your Xamarin apps can use those.

Binding To Java Libraries

Binding To Objective-C Libraries

Upvotes: 2

Timur Zanagar
Timur Zanagar

Reputation: 323

No, that isn't possible, yet. Don't know if there will be this kind of feature in the future.

Upvotes: 0

Related Questions