适用于 Android 的 .NET 警告 XA4315

示例消息

warning XA4315: Ignoring {file}. Manifest does not have the required 'package' attribute on the manifest element.

问题

指定的$(file)没有package属性在其manifest元素上。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>

解决方案

将缺少的属性添加到清单。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package='com.microsoft.hellolibrary'>
</manifest>