Reputation: 20764
I would like to use an android project in xamarin for example this one: https://github.com/jaydeepw/poly-picker
This project is written in java and has resources and activities. As far as I understand it is not possible to compile such a project into a jar and then to create a binding library. Is this correct?
What options do exist to use such a project, apart from porting the source code?
Upvotes: 0
Views: 54
Reputation: 126
Unfortunately, only you can binding Java libraries, not apps.
You can read this post: https://developer.xamarin.com/guides/android/advanced_topics/java_integration_overview/binding_a_java_library_(.jar)/
Upvotes: 2