.NET für Android-Warnung XA4315
warning XA4315: Ignoring {file}. Manifest does not have the required 'package' attribute on the manifest element.
Das angegebene Element $(file)
besitzt kein package
Attribut manifest
.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>
Fügen Sie das fehlende Attribut zum Manifest hinzu.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package='com.microsoft.hellolibrary'>
</manifest>