Background
I would like to get all the lines of the Android OS (including all of them) programmatically, including those that are considered closed.
For example, I would like to get those from the packageManager application that I found here .
Problem
Using android.R.string returns only a small fraction of the lines.
What i tried
I found this link which shows the following code, but I'm not sure what to add to the parameters:
private String GetAttributeStringValue(Context context, AttributeSet attrs, String namespace, String name, String defaultValue) {
I also noticed an application called Android resources that does this, but only for some lines. It would also be nice to know other private resources.
Question
Is this possible? If not, is it possible to do this with root?
source share