在 Adob​​e Air 中获取设备 ID

发布于 2024-12-13 04:31:15 字数 351 浏览 1 评论 0原文

为了在android sdk中获取设备ID,我编写了简单的这段代码::

import android.provider.Settings.Secure;

private String android_id = Secure.getString(getContext().getContentResolver(),
                                                        Secure.ANDROID_ID); 

但我在Adobe air应用程序中需要它。我该怎么做?

For get device id in android sdk i wrote simple This code ::

import android.provider.Settings.Secure;

private String android_id = Secure.getString(getContext().getContentResolver(),
                                                        Secure.ANDROID_ID); 

but i need it in Adobe air app. how can i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

妖妓 2024-12-20 04:31:15

您现在可以在除 TV 之外的其他平台上通过 AIR 3.0 使用 Native Extensions。

信息:扩展 Adob​​e AIR

API:flash.external.ExtensionContext

you can now use Native Extensions on other platforms other than TV with AIR 3.0.

Info: Extending Adobe AIR

API: flash.external.ExtensionContext

ぶ宁プ宁ぶ 2024-12-20 04:31:15

我们最近开发了一个 ANE,试图通过让您访问不同的设备标识符来解决这个问题。您可以在这里尝试 ANE https://github.com/myflashlab/UDID-ANE

ANE 为您提供以下标识符:

  • Android ID
  • 序列号
  • 电话设备 ID
  • 电话订户 ID
  • UUID
  • 唯一供应商 ID

import com.myflashlab.air.extensions.udid.UDID;

UDID.init();
if(UDID.OS == UDID.ANDROID) 
{
    trace(UDID.androidId);
}
else if(UDID.OS == UDID.IOS) 
{
    trace(UDID.vendorId);
}

We have recently developed an ANE that has tried to solve this problem by giving you access to different device identifiers. You can try the ANE here https://github.com/myflashlab/UDID-ANE

The ANE provides you with the following Identifiers:

  • Android ID
  • Serial Number
  • Telephony Device ID
  • Telephony Subscriber ID
  • UUID
  • Unique Vendor ID

import com.myflashlab.air.extensions.udid.UDID;

UDID.init();
if(UDID.OS == UDID.ANDROID) 
{
    trace(UDID.androidId);
}
else if(UDID.OS == UDID.IOS) 
{
    trace(UDID.vendorId);
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文