2012-03-28 81 views
13

我需要知道蘋果應用程序的軟件包標識符,例如郵件,通訊錄,Safari,照片,遊戲中心,設置,日曆,iPod,應用程序商店,相機等......搜索了很長時間後,我發現他們可能是com.apple。{} somethingelseiOS中蘋果默認應用程序的包標識符是什麼?

+1

爲什麼你需要知道他們?你想做什麼? – 2012-03-28 15:06:18

+0

我想要使用私有框架GraphicsServices GSEvent.h函數 mach_port_t GSCopyPurpleNamedPort(cstring appBundleIdentifier)獲取其紫色名稱端口的副本;我知道這聽起來相當複雜,但我需要的僅僅是包標識符。 – 2012-03-28 15:10:19

+0

這是否適用於App Store中的應用程序? – 2012-03-28 15:39:22

回答

28

這些都是從iPhone 4S的的iOS 5.0.1

Camera:  com.apple.camera 
AppStore:  com.apple.AppStore 
Contacts:  com.apple.MobileAddressBook 
Mail:   com.apple.mobilemail 
GameCenter: com.apple.gamecenter 
MobileSafari: com.apple.mobilesafari 
Preferences: com.apple.Preferences 
iPod:   com.apple.mobileipod 
Photos:  com.apple.mobileslideshow 
Calendar:  com.apple.mobilecal 
Clock:  com.apple.mobiletimer 
+1

在iOS 9.3中時鐘是'com.apple.mobiletimer',而不是上面列出的值 – 2016-03-28 20:19:34

+0

謝謝,更新。 – WrightsCS 2016-03-28 20:53:20

9

這是我能找到關於這個問題,但我不會要求所有的這些將100%準確,考慮到我從中得到了多少不同來源(其中一些看起來並不可信),但無論哪種方式,這都是我發現的......祝你好運!

com.apple.springboard 
com.apple.mobilephone 
com.apple.MobileSMS 
com.apple.mobilesafari 
com.apple.MobileStore 
com.apple.stocks 
com.apple.weather 
com.apple.MobileAddressBook 
com.apple.mobileipod-MediaPlayer 
com.apple.gamecenter 
com.apple.VoiceMemos 
com.apple.compass 
com.apple.calendar(com.apple.caldav or com.apple.ical) 
com.apple.mail(or com.apple.mobilemail not completely sure) 
4

一些對iOS7更多測試

Apple Maps: com.apple.Maps 
Notes:  com.apple.mobilenotes 
Reminders: com.apple.reminders 
Videos:  com.apple.videos 
Passbook: com.apple.Passbook 
Calculator: com.apple.calculator 
Music:  com.apple.Music 
2

這是驗證列表的的iOS 9.3:

App Store - com.apple.AppStore Calculator - com.apple.calculator Calendar - com.apple.mobilecal Camera - com.apple.camera Clock - com.apple.mobiletimer Compass - com.apple.compass Contacts - com.apple.MobileAddressBook FaceTime - com.apple.facetime Find Friends - com.apple.mobileme.fmf1 Find iPhone - com.apple.mobileme.fmip1 Game Center - com.apple.gamecenter Health - com.apple.Health iBooks - com.apple.iBooks iTunes Store - com.apple.MobileStore Mail - com.apple.mobilemail Maps - com.apple.Maps Messages - com.apple.MobileSMS Music - com.apple.Music News - com.apple.news Notes - com.apple.mobilenotes Phone - com.apple.mobilephone Photos - com.apple.mobileslideshow Podcasts - com.apple.podcasts Reminders - com.apple.reminders Safari - com.apple.mobilesafari Settings - com.apple.Preferences Stocks - com.apple.stocks Tips - com.apple.tips Videos - com.apple.videos Voice Memos - com.apple.VoiceMemos Wallet - com.apple.Passbook Watch - com.apple.Bridge Weather - com.apple.weather

完整的,先進的最新列表在這裏:http://labs.wrprojects.com/apple-ios-9-3-native-app-bundle-identifiers/

+0

一個潛在的解決方案的鏈接總是受歡迎的,但請[在鏈接周圍添加上下文](http://meta.stackoverflow.com/a/8259/169503),以便您的同行用戶可以瞭解它是什麼以及爲什麼在那。如果目標網站無法訪問或永久離線,請始終引用重要鏈接中最相關的部分。考慮到_barely不僅僅是一個鏈接到外部網站_是一個可能的原因[爲什麼和如何刪除一些答案?](http://stackoverflow.com/help/deleted-answers)。 – Tunaki 2016-03-28 20:29:26

16

這是經過驗證的列表爲的iOS 9.3:

App Store - com.apple.AppStore 
Calculator - com.apple.calculator 
Calendar - com.apple.mobilecal 
Camera - com.apple.camera 
Clock - com.apple.mobiletimer 
Compass - com.apple.compass 
Contacts - com.apple.MobileAddressBook 
FaceTime - com.apple.facetime 
Find Friends - com.apple.mobileme.fmf1 
Find iPhone - com.apple.mobileme.fmip1 
Game Center - com.apple.gamecenter 
Health - com.apple.Health 
iBooks - com.apple.iBooks 
iTunes Store - com.apple.MobileStore 
Mail - com.apple.mobilemail 
Maps - com.apple.Maps 
Messages - com.apple.MobileSMS 
Music - com.apple.Music 
News - com.apple.news 
Notes - com.apple.mobilenotes 
Phone - com.apple.mobilephone 
Photos - com.apple.mobileslideshow 
Podcasts - com.apple.podcasts 
Reminders - com.apple.reminders 
Safari - com.apple.mobilesafari 
Settings - com.apple.Preferences 
Stocks - com.apple.stocks 
Tips - com.apple.tips 
Videos - com.apple.videos 
Voice Memos - com.apple.VoiceMemos 
Wallet - com.apple.Passbook 
Watch - com.apple.Bridge 
Weather - com.apple.weather 

完整的,先進的最新列表,請訪問:

http://labs.wrprojects.com/apple-ios-9-3-native-app-bundle-identifiers/

1

有針對查找當前的包ID的包ID搜索引擎,比如這一個: http://offcornerdev.com/bundleid.html 只需在搜索字段中鍵入應用程序的名稱,它會爲您提供捆綁ID。適用於AppStore中的所有應用程序,當然還有Apple股票應用程序。

相關問題