Compartilhar via


.NET para Android alerta XA4315

Mensagens de exemplo

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

Problema

O especificado $(file) não tem um package atributo em seu manifest elemento.

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

Solução

Adicione o atributo ausente ao manifesto.

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