[Xamarin] 에러 - Could not find 2 Android X assemblies, Xamarin.AndroidX.MediaRouter
C#/Xamarin Maui 2020. 7. 28. 23:18728x90
728x170
Android 쪽 타겟팅 Android 버전을 Android 9.0 에서 Android 10.0 으로 올렸더니
아래와 같은 에러가 발생되었다.
Could not find 2 Android X assemblies, make sure to install the following NuGet packages:
- Xamarin.AndroidX.MediaRouter
You can also copy-and-paste the following snippet into your .csproj file:
<PackageReference Include="Xamarin.AndroidX.MediaRouter" Version="1.1.0.1" /> UnitConversion.Android
위에러는 Nuget 의 AndroidX 의 패키지가 더이상 지원을 안해서 발생하는 문제로
NugetPackage 에서 Xamarin.Android.Support.v7.MediaRouter 를 제거하면 해결된다.
728x90
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
[Xamarin] Rg.Plugins.Popup 에서 영역 벗어난 곳 터치시 닫히지 않게 하기 (0) | 2020.08.04 |
---|---|
[Xamarin] Shell 에서 이전 페이지로 가는 방법 (0) | 2020.08.01 |
[Xamarin] Android - WebView 에서 ERR_CLEARTEXT_NOT_PERMITTED 오류 (0) | 2020.07.10 |
[Xamarin] ITMS-90101 에러 (0) | 2020.07.07 |
[Xamarin] 에러 : Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag (0) | 2020.06.18 |