Post

Replies

Boosts

Views

Activity

WKHaptic Issue when headphones are connected
Info watchOS: 11.0 (22R5348a) *Though has been present since watchOS 10. Issue: Other apps playing music cancel out WKHaptics from firing (low volume and no vibrations) Description When another app is playing music (ex: spotify) in the background while using my app, that uses WKHaptics. The WKHaptics vibrations are non existent as long as headphones are connected. When the headphones are disconnected the vibrations return. Test MVP test app >> https://github.com/mazefest/AppleCodeSupportTestApp
1
0
317
Sep ’24
Is it possible to programmatically canning info.plist values in app?
I want to be able to change the value for "App Supports Always On Display (Watch)" from yes to no depending on a variable in the app. We are in the middle of migrating our code over to swiftui so that our app appropriately uses the AOD display. however our users voiced distain for the AOD fallback screen. So what we want to do is allow our beta testers to use the AOD feature by changing the value of the "App Supports Always On Display (Watch)" to true and for our production users keep it at false. Is this possible? Thanks
2
0
1.9k
Apr ’22
Is AW Seires 2 Compatible with IOS 15 (iPhone 13)
I've seen many threads like this one that state the following; We understand that you have questions about compatibility with the new iPhone 13 and Apple Watch series 2. iPhone 13 will run iOS 15. Your Apple Watch will need to run watchOS 8. watchOS 8 requires iPhone 6s or later with iOS 15 or later and one of the following Apple Watch models: Apple Watch Series 3 Apple Watch Series 4 Apple Watch Series 5 Apple Watch SE Apple Watch Series 6 Apple Watch Series 7 So fro, that answer I would say no, but then I find videos like this one online where people are able to pair Series 2 devices to iPhone 13. So is it compatible or not? and if so what limitations does the Series 2 have when working with iOS 15 devices.
1
0
2.3k
Jan ’22
How do I add required bluetooth-central-background entitlement for AW?
My app needs the ability to communicate with bluetooth devices when the app is in the background. This was solved by going into my apps Plist file and adding App communicates using CoreBluetooth to the Required Background Modes. The app works as expected when this is added. Now when I attempt to upload my app I am given the following error:  Missing entitlement. watchOS extension 'company.app/Watch/AppName.app/PlugIns/AppName Extension.appex' uses 'UIBackgroundModes' value 'bluetooth-central' without the required entitlement 'com.apple.developer.bluetooth-central-background' signed into the bundle. I do not feel like this should be required, does anyone have an idea on how to solve this issue? Thanks
2
0
1k
Dec ’21
XCFramework requiring self when not needed?
I'm trying to create a Framework that I can use across platforms. I have successfully added the framework to a test app and this is what the test framework looks like. import Foundation public class HelloComputer {     public func getHello() -> String {         return "hello world"     } } But when I import the framework this is what happens Am I missing something? Why is it asking for a instance of its self?
1
0
820
Jun ’21