I’m looking for the easiest and most elegant way to exchange data between two separate Windows Phone applications.
For example, I have two applications:
Input.app - an application with an input field and a button "Save"Read.app - application with a label and a button "Read".
A use case will look like this:
- The user opens
Input.app, enters something into the input field and clicks the "Save" button. - User closes
Input.app. - The user opens
Read.appand clicks the "Read" button. - The label will be filled with the data stored in
Input.app.
Note
I am not looking for a solution where it Input.appcalls Read.app(e.g. using Tasks). In addition, I'm not looking for a solution that Input.appstores data on the Internet, but Read.appreads data when the application starts.
Is it possible?
source
share