I need to send some string data from my one application activity to my other application activity in android and not between the activities within the same application. How to do that? What intent filters my other application need to declare? Please try to elaborate with example…..
Share
As far as I could understand from your answer you’re looking for intents:
On the manifest of App A – Activity Alpha you declare a intent filter with Category DEFAULT and Action =
com.your_app_package_name.your_app_name.ActivtiyAlphaThe on App B, Activity Beta you put the code to launch A and pass the data:
Then back on App A – Activity Alpha you put the code: