111,097
社区成员




XmlNode application = doc.SelectSingleNode("/manifest/application");
//增加UMENG_APPKEY和UMENG_CHANNEL标示
XmlElement xe1 = doc.CreateElement("meta-data");
System.Xml.XmlAttribute xa1;
xa1 = doc.CreateAttribute("android", "name", w3NameSpace);
xa1.Value = "UMENG_APPKEY";
xe1.Attributes.Append(xa1);
application.AppendChild(xe1);