I'm looking for the most simple and elegant way to share data between two separate Windows Phone Apps.
For example, I have two apps:
Input.app
- An app with an input field and a "Save"-buttonRead.app
- An app with a label and a "Read"-button.
The use case will be as follows:
- The user opens the
Input.app
, enters something in the input field and presses the "Save"-button. - The user closes
Input.app
. - The user opens
Read.app
and presses the "Read"-button. - The label will get filled with the data stored by the
Input.app
.
Note
I'm not looking for a solution where Input.app
calls the Read.app
(for example with Tasks
). Also, I'm not looking for a solution where Input.app
stores the data online, and Read.app
reads the data when the app is launched.
Is this even possible?