Communication between Windows Phone applications through a shared library

I am developing an application for Windows Phone 8.1 on Visual Studio 2013 with C#, I created a DLL file that saves some data, the same .dllone that I used in another application.

My requirement is based on the same file .dll, I have to communicate with another application. As with Android, we have a broadcast receiver that makes the request internally, and data exchange between the two applications is easily possible. Are there any features in the development of Windows Phone that make this task doable?

+4
source share
1 answer

Firstly, if you save something in isolated storage, it is isolated from this application. No other application can access it, regardless of whether they have the same libraries (DLLs). Exchange data between Windows Phone applications

Two ways to communicate between applications:

Deep connection

You can use deep binding to open one application from another and pass values ​​to the application.

You can dine in other applications using the URI string and related files. Autostart applications using file associations and URIs for Windows Phone 8

Save and retrieve data from a web service or cloud storage

, , .

, .

+1

All Articles