Sdílet prostřednictvím


Upozornění .NET pro Android XA4315

Ukázkové zprávy

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

Problém

Zadaný prvek $(file) nemá atribut package na svém prvku manifest.

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

Řešení

Přidejte do manifestu chybějící atribut.

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