I am just looking for the native watchOS applications bundle ids. For example: for iPhone: "com.apple.news" and what is for Watch: ??? I tried "com.apple.news.watchkitapp" which doesn't work. Maybe someone know how to help me?
Native applications bundle ids in watchOS
I am just looking for the native watchOS applications bundle ids.
Why do you need this info?
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
I am working on Apple Watch UI testing using XCUITest
Oh, right, I saw your question go back under the XCTest tag.
I don’t have a good answer for you. The equivalent of Springboard on watchOS is, IIRC, Carousel, but I’ve no idea what its bundle ID is. You might be able to uncover something useful by rummaging through the system log. Failing that, I recommend that you open a DTS tech support incident so that one of my colleagues can carve out time to research this properly.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Thank you! I will look what I can do in that case, I really appreciate your help!
Hello!
Carousel's bundle id is "com.apple.Carousel"
and you can interact with it using XCTest by creating an XCUIApplication using that id:
let watchOS = XCUIApplication(bundleIdentifier: "com.apple.Carousel")
Here is a list I took from the apple watch logs of the native bundle id's
com.apple.AppStore com.apple.NanoStopwatch com.apple.SessionTrackerApp com.apple.clockface com.apple.chrono.WidgetRenderer-Default com.apple.NanoCalendar com.apple.ActivityMonitorApp com.apple.weather.watchapp com.apple.NanoNowPlaying com.apple.NanoAlarm com.apple.Mind com.apple.NanoCompass.watchkitapp com.apple.NanoCalculator.watchkitapp com.apple.NanoSettings com.apple.NanoTips com.apple.NanoContacts com.apple.NanoCamera com.apple.NanoMenstrualCycles com.apple.findmy.finddevices com.apple.findmy.findpeople com.apple.NanoPhotos com.apple.HeartRate com.apple.NanoMail com.apple.NanoMaps com.apple.NanoMedications com.apple.watchmemojieditor com.apple.MobileSMS com.apple.NanoRemote com.apple.Noise com.apple.NanoSleep.watchkitapp com.apple.NanoPhone com.apple.private.NanoTimer com.apple.NanoPassbook com.apple.findmy.finditems com.apple.Carousel
I am still missing the bundle id's app that gets the watch connected to the iPhone, If you have those id's please share them