I'm attempting to send MMS implementing the method outlined here: How to send image via MMS in Android?
To do so, I imported com.android.mms to my Eclipse project (among other imports); however I cannot overcome one issue. In class MmsConfig:
private static void loadMmsSettings(Context context) {
XmlResourceParser parser = context.getResources().getXml(R.xml.mms_config);
R.xml.mms_config is unresolved. From where do I locate/obtain this resource? Thanks!