使用

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 …