如何使用钛合金appcelerator获取Android/iPhone设备唯一ID?

发布于 2024-11-15 15:41:13 字数 124 浏览 3 评论 0原文

我们正在使用 Titan Appcelerator 来开发 iPhone 和 Android 应用程序。我们希望获得用于用户注册的唯一设备 ID。钛有没有API可以做同样的事情。如果没有,我将如何获取信息?非常感谢带有代码示例的答案。

We are using the titanium appcelerator for developing the iPhone and android app. We would like to get the unique device id for user registration. Does titanium has any api to do the same. If not, how will I get the info? Answers with code samples are much appreciated.

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

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

发布评论

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

评论(2

葬花如无物 2024-11-22 15:41:13

使用此代码:

Titanium.Platform.getId();

Use this code:

Titanium.Platform.getId();

病毒体 2024-11-22 15:41:13

我不知道钛合金加速器。
但是尝试使用以下代码来获取设备 ID

TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
telephonyManager.getDeviceId();

并且您应该将以下权限添加到您的 Manifest.xml 文件中:

<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

谢谢
迪帕克

I donot know about Titanium appcelerator.
But Try with the following code to get device id

TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
telephonyManager.getDeviceId();

And you should add the following permission into your Manifest.xml file:

<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

Thanks
Deepak

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