Partager via


Avertissement .NET pour Android XA4315

Exemples de messages

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

Problème

L’attribut spécifié $(file) n’a pas d’attribut package sur son manifest élément.

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

Solution

Ajoutez l’attribut manquant au manifeste.

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