Reputation: 33
is it possible to create several independent modules which can be integrated into one xamarin app considering that i don't want an app which simply launches others apps already installed on the smartphone.
Goal : One dev team takes charge of app1, one dev team takes charge of app2 and another dev team takes charge of masterApp. The MasterApp "simply" adds app1 and app2 with nuget packages for example. App1 and app2 must be built independently of masterAPP.
Is it possible to do such a thing ?
What i tried to do :
Upvotes: 0
Views: 227
Reputation: 2119
Take a look at this tutorial. With Xamarin you can create PCL library, that can be used on iOS/Android/WP.
For our specific case (black box) you can create Class Library:
1) Create class library project
3) Build as Release configuration
4) Locate builded .dll
5) Add it as .Net Assemble Reference to another Project
6) Call your public methods. You won't be able to look up implementations.
Upvotes: 1