I am creating a Xamarin cross-platform app, I have 2 types of user, for example, a buyer and a seller.
I want to build 2 applications from the same code base by selecting/skipping the classes. There some classes are common for both apps, some classes only for buyer build, some are only for seller build.
If I write the logic for the application flow based on the user type then there will be unwanted classes that building, It will increase the app size.
I know we can create multiple projects/application for this, How can we do it from the same code base? Is it possible in Xamarin?