I'm using xamarin.forms to create an equivalent of a windows forms app in mobile, the windows app runs two exe files at the same time and the exe files communicate with each other through a windows service, I want to know if the same thing is possible in xamarin.forms, I mean if it is possible to publish two apks under one app and how? and if so, how to communicate between the two apks? Is it possible to use the same windows service that we're using in our windows app?
EDIT
What I want to achieve by communicating is the exact same thing we have in windows, we're trying to use the same code we have used in our windows app, as much as possible, as I explained in my question, we're using a sevice to comminucate between two exe files, I know it's not possible to run an exe
in Android OS
, but I thought if I could use the code of the exe
files in xamarin
and create a UI for them and turn them to apk
(but not seperate apks
, if possible) and communicate between these two, then we will be able to achive the same functionality we have in Windows.Forms. I don't want to open another app in my main app, I just want to use the data of the second app in my main app.