Page 1 of 1

List all "String keys" from "Start Activity".

Posted: 30 Apr 2020 17:30
by doc11
Is it possible to list all string keys of an action at "Start activity".

If it does not work, is there another way to read the "String keys" somehow?

Thanks for the help.

Re: List all "String keys" from "Start Activity".

Posted: 30 Apr 2020 18:06
by Desmanto
Do you mean how to determine what "extras" parameter we need to put there? I wish there is an easy way too.

- Currently the best ones if the dev of the apps provide the documentation on how to use the intent, along with the needed parameter.
- For android common intent, usually we can google it, there are some website list the common intent and extras
- For app that can use send/view, usually you can catch the intent using intent Intercept. https://f-droid.org/en/packages/uk.co.a ... intercept/
- Other new method I just discover is to peek at the launcher database : viewtopic.php?f=5&t=8672
- The last one is the most difficult and also not guarantee success, only after all above doesn't give any clue; is to decompile the app and look for that particular - intent. This mean we have to understand some java. And even then it is still quite difficult.