In Android, is it possible to unicast an Intent to an Activity? The only options I see for sending intents is either to start an activity or issue a broadcast, but I only want a specific target to receive my Intent.
In Android, is it possible to unicast an Intent to an Activity ? The
Share
It is possible to set a specific
ComponentNamevia either a constructor or thesetComponentandsetClassNamemethods.