Post

Replies

Boosts

Views

Activity

Reply to macOS 11 beta, Code Signature Invalid crash
Well this is embarrassing, it turns out that this is my bug. In putting everything together for the feedback report, I checked over this code again and I found an error. I'm reading an 8-byte value from the file which is an epoch time. Instead of doing: int64_t val=0; read(fd,&val,8); I was doing: int64_t val=0; read(fd,&time,8); I'm surprised this code didn't crash before, considering its stupidity! Many thanks Quinn, you have been extremely helpful.
Aug ’20
Reply to HomeKit in Mac Catalyst as a bridge to macOS app
Anticro - Apple have added HomeKit support for Catalyst in Big Sur. If you get the latest Xcode beta and Big Sur beta you can start using HomeKit in your Catalyst app :) As per my original question though, what I'm concerned about is whether Apple will allow an app into the App Store that doesn't really have many features itself, but rather acts as a bridge between a macOS app and HomeKit. It seems like this should be allowed, but I haven't been able to determine this for sure.
Oct ’20