I have an app that sends intent to an exact app. I have root shell access and could possibly modify AOSP, but I don't really know where to look at.
Got this in logcat:
START u0 {act=com.app.Action.OPEN cmp=com.app/.SomeActivity (has extras)} from uid 10052
How to capture this (has extras)? Or at least keys (not values) used in intent, cause my main goal is to start external app activity with parameters (with root access), but it is closed source and I don't know how extra string key is named.
To clarify the question I should say that intent is called from an app to itself and I don't have sources of this app.