如何在 Xamarin Froms 中使用 c# 在 Android 和 iOS 中获取设备唯一 ID?我正在使用 Azure 通知中心发送通知。我指的是这个博客。但在 Android 中我找不到相关的“设置”
3 回答
根据您发布的博文http://codeworks.it/blog/?p=260和您的简短问题描述,我尝试回答您的问题。
安卓使用
Android.Provider.Settings.Secure.GetString(Android.App.Application.Context.ContentResolver, Android.Provider.Settings.Secure.AndroidId);
对于 iOS,请参阅您的博文.. 或选择将IdentifierForVendor
eg保存在您的类中AppDelegate
并在您的类中返回此值IOSDevice
(使用博文中的名称)。用于UIDevice.CurrentDevice.IdentifierForVendor.ToString()
获取 iOS 上的设备 ID。
这里详细描述。但实际上您不需要这样做并尝试从每个设备中获取一个 Id。只需创建一个 Guid 并保存到设备也可以。Xamarin 具有在设备中持久化值的首选项。
您可以创建一个 guid 并将其保存到 Prefecences,如下所示:
var deviceId = Preferences.Get("my_deviceId", string.Empty);
if(string.IsNullOrWhitespace(deviceId))
{
deviceId = System.Guid.NewGuid().ToString();
Preferences.Set("my_deviceId", deviceId);
}
这种方法的好处是,在您将应用转移到另一台设备后,您仍将拥有相同的 ID;但是如果您再次卸载并重新安装,您将获得一个新的 ID。对于您从设备获取 Id 的其他情况,当您将应用程序转移到另一台设备时它会发生变化。
对于您想从设备获取 Id 的其他情况:
iOS:设备标识符
public string Id => UIDevice.CurrentDevice.IdentifierForVendor.AsString();
Android:序列号、getSerial 和 AndroidId
string id = string.Empty;
public string Id
{
get
{
if (!string.IsNullOrWhiteSpace(id))
return id;
id = Android.OS.Build.Serial;
if (string.IsNullOrWhiteSpace(id) || id == Build.Unknown || id == "0")
{
try
{
var context = Android.App.Application.Context;
id = Secure.GetString(context.ContentResolver, Secure.AndroidId);
}
catch (Exception ex)
{
Android.Util.Log.Warn("DeviceInfo", "Unable to get id: " + ex.ToString());
}
}
return id;
}
}
UWP:GetPackageSpecificToken 或 GetSystemIdForPublisher
string id = null;
public string Id
{
get
{
if (id != null)
return id;
try
{
if (ApiInformation.IsTypePresent("Windows.System.Profile.SystemIdentification"))
{
var systemId = SystemIdentification.GetSystemIdForPublisher();
// Make sure this device can generate the IDs
if (systemId.Source != SystemIdentificationSource.None)
{
// The Id property has a buffer with the unique ID
var hardwareId = systemId.Id;
var dataReader = Windows.Storage.Streams.DataReader.FromBuffer(hardwareId);
var bytes = new byte[hardwareId.Length];
dataReader.ReadBytes(bytes);
id = Convert.ToBase64String(bytes);
}
}
if (id == null && ApiInformation.IsTypePresent("Windows.System.Profile.HardwareIdentification"))
{
var token = HardwareIdentification.GetPackageSpecificToken(null);
var hardwareId = token.Id;
var dataReader = Windows.Storage.Streams.DataReader.FromBuffer(hardwareId);
var bytes = new byte[hardwareId.Length];
dataReader.ReadBytes(bytes);
id = Convert.ToBase64String(bytes);
}
if (id == null)
{
id = "unsupported";
}
}
catch (Exception)
{
id = "unsupported";
}
return id;
}
}
James Montemagno 提供了一个插件。
在 NuGet 包中将其搜索为 Xam.Plugin.DeviceInf。Github 链接:https ://github.com/jamesmontemagno/DeviceInfoPlugin