Delen via


.NET voor Android-waarschuwing XA4315

Voorbeeldberichten

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

Probleem

Het gespecificeerde $(file) heeft geen package attribuut op zijn manifest element.

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

" needed as the existing translation is correct.

Voeg het ontbrekende kenmerk toe aan het manifest.

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