111,119
社区成员
发帖
与我相关
我的任务
分享
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);

