Is it secure to pass String
between activities via Bundle
given that device is not rooted and considered secure? Can other processes like hacker's malware gain access to the data somehow?
Android is passing values with explicit intent safe
1k views Asked by Heisenberg At
1
There are two types of intent that you can use to exchange data between activities :
If you are using Implicit Intent, there is a risk of Intent Spoofing or Intent Interception.