다음을 통해 공유


Android용 .NET 경고 XA4315

예제 메시지

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

문제

지정된 $(file) 요소에 manifest 특성이 package 없습니다.

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

솔루션

매니페스트에 누락된 특성을 추가합니다.

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