我可以将Xam.Plugin.Madia
与Xamarin.Android
一起使用吗?我已经安装了Xam.Plugin.Madia
,但收到异常消息。
未处理的异常: System.NotImplementedException:此程序集的可移植版本中未实现此功能。您应该从主应用程序项目中引用NuGet包,以引用特定于平台的实现。
我在使用此代码时收到此异常
if (CrossMedia.Current.IsCameraAvailable && CrossMedia.Current.IsTakePhotoSupported)
{
// Supply media options for saving our photo after it's taken.
var mediaOptions = new Plugin.Media.Abstractions.StoreCameraMediaOptions
{
Directory = "Receipts",
Name = $"{DateTime.UtcNow}.jpg"
};
// Take a photo of the business receipt.
}