Post not yet marked as solved
Hi all,I am observing massive battery drain coming from the Health app. I use a number of apps to read and write Health data (My Fitness Pal, Runkeeper, Seven, etc).I have an Apple Watch paired with this iPhone 6S. Both are running the new betas (iOS 9.3 and watchOS 2.2). I noticed that the Activity Health Data has not synced all day...Settings > Battery > Usage shows that the Health app has spent 22min on screen and has consumed 56% battery.Has anyone else observed this?Cheers,Nick
Post not yet marked as solved
Hi all,I'm working on a watchOS app and would like to securely access a password that gets stored in the keychain. The issue I'm facing has to do with the device Passcode settings and Wrist Detection.I am unable to find a way to protect the password when the user has Passcode turned on but Wrist Detection turned off on their Apple Watch. The test case I am failing is:User turns on Passcode on Apple Watch (via Watch app on iPhone)User turns off Wrist Dectection (via Watch app on iPhone)User unlocks WatchUser takes Watch off wristUnauthorised user launches my app and accesses KeychainI expected kSecAccessControlUserPresence / SecAccessControlCreateFlags.userPresence to help with this, but it doesn't seem to (unless I'm doing something wrong):var error: Unmanaged?
let accessControl = SecAccessControlCreateWithFlags(nil,
kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly,
SecAccessControlCreateFlags.userPresence,
&error)Between steps 4 and 5 I would like to be able to enforce userPresence somehow. I am trying to achieve a flow similar to Apple Pay: when Wrist Dection is off and I invoke Apple Pay, the Passcode entry screen is presented modally before Apple Pay can be used.Cheers,Nick
Post not yet marked as solved
Hi there,We are trying to convert a Keras 2 model into CoreML and we are getting this error:ValueError: Keras layer '<class 'keras.applications.mobilenet.DepthwiseConv2D'>' not supported.Has anyone encountered this issue? Any advice would be much appreciated. Cheers...