error: unexpected element <instrumentation> found in <manifest><application>.
时间: 2023-12-10 16:03:19 浏览: 163
Error Encountered an improper argument
如果在 AndroidManifest.xml 文件的 <application> 标签内部添加 <instrumentation> 元素,会出现 "unexpected element <instrumentation> found in <manifest><application>" 的错误,这是因为 <instrumentation> 元素只能出现在 <manifest> 根元素的直接子元素位置。
正确的 instrumentation 配置应该放在 <manifest> 元素内部,如下所示:
```
<manifest ...>
<instrumentation android:name="com.example.app.MyInstrumentation"
android:targetPackage="com.example.app" />
<application ...>
...
</application>
</manifest>
```
在这个示例中,<instrumentation> 元素是作为 <manifest> 元素的直接子元素之一,而不是 <application> 元素的子元素。这样配置才是正确的。
阅读全文