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
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
[.NET MAUI] APP 제거하기 - ANDROID (0) | 2023.03.21 |
---|---|
[.NET MAUI] 테마 고정하기 - Dark, Light (0) | 2023.03.21 |
[.NET MAUI] Preferences 사용하기 - save property (0) | 2023.03.19 |
[.NET MAUI] Azure Cosmos DB 에 접속하여 데이터 가져오는 방법 (0) | 2023.03.19 |
[.NET MAUI] CollectionView 데이터 2열로 나타내기 (0) | 2023.03.18 |