3,232 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
36
views
Xcode 15.2: "An application bundle was not found" [closed]
I am encountering a persistent error when trying to run a brand new project that includes both an iOS App and a Watch App companion on a paired Simulator in Xcode 15.2.
The Environment:
Xcode: 15.2 (...
0
votes
1
answer
55
views
How to check WatchConnectivity between Flutter iOS app and Watch app in debug mode?
I’m working on a Flutter iOS app with a paired Apple Watch app (WatchKit in Swift).
In Debug mode (when running the both(watch & mobile) app from xcode):
Watch → iPhone messages arrive ...
0
votes
0
answers
30
views
Is it permissible to use HKWorkoutSession in an Apple Watch app designed for work safety?
We are developing a mobile application dedicated to work safety and do not include any fitness tracking or workout-related features. Our use of HKWorkoutSession is strictly for enabling background ...
1
vote
0
answers
99
views
How WCSession's isPaired = false but isWatchAppInstalled = true?
Watch app's Info.plist
// ...
<key>WKRunsIndependentlyOfCompanionApp</key>
<false/>
// ...
My code:
session.delegate = self
session.activate()
public func session(_ session: ...
0
votes
0
answers
59
views
watchOS timer app freezes UI in dimmed state while haptics continue working
I'm working on a watchOS timer app that needs to run for 3 1/2 minutes while showing countdown numbers. I think that I've discovered that there's nothing to do with the watch dimming- that's a system ...
0
votes
0
answers
47
views
Is there a way to keep the Apple Watch screen on?
There are a number of posts on stackoverflow from about 10 years ago asking if it's possible to keep the Apple Watch screen on programmatically and the answer at that time was no.
I'm building an app ...
0
votes
0
answers
37
views
Location usage description on WatchOS exclusive app
My app is being rejected arguing it needs to add the location permission usage description when asked. It is a watchOS only app and there's no iPhone counterpart.
I have two info.plist files. One in ...
2
votes
1
answer
302
views
watchOS app local notification delayed if companion app is installed or unlocked
I have a watchOS and iOS app that are set to run independently from one another, I can install each separately and there is no reliance on each other with anything like WKSession.
The issue I'm having ...
0
votes
0
answers
78
views
Image not showing on complication
I'm trying to use the following as my complication code:
struct ComplicationsEntryView : View {
var entry: Provider.Entry
var body: some View {
Image("ComplicationImage")
...
2
votes
0
answers
293
views
How to disable Live Activity on Apple Watch while keeping it enabled on iPhone?
I'm using Live Activity features in my app, but I want to customize the user experience across different Apple devices. Specifically, I'd like to:
Keep Live Activity enabled and functioning on the ...
1
vote
0
answers
50
views
Local notification not showing when app is open [duplicate]
I'm trying to have my notification show when my app is in the foreground or background. They are showing when the app is in the background but when I open the app and try to have one show, it doesn't.
...
0
votes
0
answers
82
views
Why am I not getting any returned values from my HKStatisticsQuery?
I am creating an IOS application meant to fetch certain health points, accumulative and average, over a certain period of time. The time is received via a timer start and a timer end, and once the ...
1
vote
1
answer
94
views
Is it possible to start an extendedRuntimeSession in background
I have a Companion Watch App for my iPhone App and communicate via the messages and applicationContext between the watch and the phone. If I start an Event at my iPhone and my watch is turned on the ...
1
vote
1
answer
960
views
Missing WCSessionDelegate didFinish callback transferring file from WatchOS to iOS(iPhone) using transferFile(_:metadata:) -> WCSessionFileTransfer
I am using WCSession.transferFile(_:metadata:) -> WCSessionFileTransfer for transferring some files from WatchOS (10.5) to iPhone iOS 17.5.1
Watch Connectivity WCSession.transferFile(_:metadata:)
...
0
votes
1
answer
134
views
Apple Watch Getting 561015905 while trying to initiate recording when the app is in background
I'm trying to start and stop recording when my app is in background periodically. I implemented it using Timer and DispatchQueue. However whenever I am trying to initiate the recording I get this ...