使用

now browsing by tag

 
 

如何获得 iOS 装置的 K-value UDID?

iOS 7.0 有关 UDID 的改变:

-[UIDevice uniqueIdentifier] is no longer accepted in submissions to the App Store. In iOS 7, apps that are already on the store or on users’ devices that call this removed API will no longer be returned the UDID. Instead, -[UIDevice uniqueIdentifier] will return a 40-character string starting with FFFFFFFF, followed by the hex value of -[UIDevice identifierForVendor]. It is important to consider how this will affect existing apps. Consider submitting updates that no longer access the UDID.

在 Good for Enterprise 的架构下,每个装置必须要有一个唯一值 Identifier。以前 Good 会采用装置上 UDID 值,但在 iOS 7.0 (含)以后已不能再使用 UDID 值,因此 Good 会使用一个 K-value 来做为每个装置的 Identifier。
Read More …

如何获得 iOS 装置的 UDID?

有时候在跟Good厂家技术支持寻求帮助时,对方会要求提供设备的 UDID,以下介绍如何获得 UDID 的方法:

方法1:通过 iTunes

  • 将 iOS 装置接上电脑,并打开 iTunes 软件。
  • 在界面中点选装置,查并看 Summary 页面。
  • 在 Summary 页面中,鼠标去点击 “Serial Number” 区域,其资料会依序 “Serial Number” -> “UDID” -> “ECID” -> “Product Type” 来变化,其中的 UDID 就是我们要找的资料,是由一串40个数字(十六进制数)所组成。
    UDID from iTunes

Read More …

如何查找应用程序的Application I.D/Package Name (Android篇)

在Good Mobile Control中定义 Third-Party Application时,必须知道 Application I.D. 或 Package Name,事实上查找 Application I.D. 或 Package Name 是很简单的,你只要去下载 Android System Info 这支程序并安装在你的手机上,就可以查看你手机上所有应用程序的 Application I.D. 或 Package Name。

  • 请到谷歌的Play Store去查找 “Android System Info”,并下载安装。
  • 执行 Android System Info 程序,并在 Apps 页面中去点选你要查看的 APP。例如:下图中我们去点选 Good for Enterprise 这个程序,就可以看到其 Package Name 为 “com.good.android.gfe”。
  • 可以查看Package Name的程序很多,Android System Info只是其中一个。
  • PackageName1

Read More …