'wait activity for result from another app android
I have 2 applications, APP1 will start a transaction and will send some data to APP2 then APP2 will return to APP1 with updated data then APP1 will continue the transaction.
what is the best way to this in android?
is there a way to wait activity for result from another app?
Thank you.
Solution 1:[1]
I used to use startActivityForResult for same situation like you. but I see it is deprecated now and I recommend you to check this.
OnActivityResult method is deprecated, what is the alternative?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | KpStar |
