Xamarin Android: Get One App's State Information From Another
I have two Xamarin Android apps -- let's call them 'Archy' and 'Mehitabel'. Archy has some persistent state information (which, let's say for the sake of argument, is in a SQLite D
Solution 1:
Based on my research, I think you could open Archy before you need the data in Mehitabel. This is demo about opening an app in code.
IntentlaunchIntent= PackageManager.GetLaunchIntentForPackage("NewTestApp.NewTestApp");
if (launchIntent != null)
{
StartActivity(launchIntent);
}
Note:NewTestApp.NewTestApp is package name of Archy.
Post a Comment for "Xamarin Android: Get One App's State Information From Another"