I have an apk file. I converted it to jar file using dex2jar tool in order to obtain a jar file. I opened the jar file with java decompiler. In the code (mainactivity.java) there is a piece of code like
ContentValues localContentValues = new ContentValues();
localContentValues.put("title", "testtesttest");
localContentValues.put("url", getApplicationContext().getString(2131034115));
localContentValues.put("bookmark", Integer.valueOf(1));
getContentResolver().insert(Browser.BOOKMARKS_URI, localContentValues);
what does this mean actually and how i obtain the actual value of getApplicationContext().getString(2131034115) with java decompiler. There is no resource file such as .xml after decompilation. R.java contains an information like
public static final class string
{
public static final int action_settings = 2131034114;
public static final int app_name = 2131034112;
public static final int baseurl = 2131034115;
public static final int hello_world = 2131034113;
}
what is the actual string value of baseurl?