C#/Xamarin Maui
[.NET MAUI] App Icon 변경 시 유의 점
kjun.kr
2023. 3. 20. 23:18
728x90
728x170
App Icon 을 test.svg 로 하고 싶은 경우
Android 쪽의 AndroidManifest.xml 의 내용을 아래 처럼 변경해야합니다.
<application android:allowBackup="true" android:icon="@mipmap/test" android:roundIcon="@mipmap/test_round" android:supportsRtl="true"></application>
위 내용을 변경하지 않으면 아래와 같은 에러가 발생됩니다.
maui This error is likely caused by an issue with the AndroidManifest.xml file or an Android manifest generation attribute in a source code file |
728x90
그리드형