今天绑定的时候发现Generator.exe直接退出了,后来发现
在错误列表中查看,只发现
Error MSB6006: “generator.exe”已退出,代码为 -532462766。 (MSB6006) (UMengSdkFb)
莫名奇妙,后面查看资料,发现详情可以在旁边的 构建输出 中查看,这样就找到实际的问题了
未经处理的异常: MonoDroid.Generation.BindingGeneratorException: error BG4304: Invalid XPath specification: /api/package[@name='com.umeng.fb.widget']/interface=[@name='PagerSlidingTabStrip.a'] ---> System.Xml.XPath.XPathException: 表达式的计算结果必须为节点集。 在 MS.Internal.Xml.XPath.XPathParser.ParseNodeTest(AstNode qyInput, AxisType axisType, XPathNodeType nodeType) 在 MS.Internal.Xml.XPath.XPathParser.ParseStep(AstNode qyInput) 在 MS.Internal.Xml.XPath.XPathParser.ParseRelativeLocationPath(AstNode qyInput) 在 MS.Internal.Xml.XPath.XPathParser.ParsePathExpr(AstNode qyInput) 在 MS.Internal.Xml.XPath.XPathParser.ParseUnionExpr(AstNode qyInput) 在 MS.Internal.Xml.XPath.XPathParser.ParseMultiplicativeExpr(AstNode qyInput) 在 MS.Internal.Xml.XPath.XPathParser.ParseAdditiveExpr(AstNode qyInput)
实际上就是节点格式错误,如果是一般‘’里面的名称拼写错误,会生成警告;如果是语法,上面是interface=,后面的=是不应该加的,这种语法错误是会直接导致generator.exe报错(IDE不会FC)。