Post

Replies

Boosts

Views

Activity

Reply to Xcode 14.1 no code coverage
Finally we found it was caused by an accidentally updated SPM dependency
Replies
Boosts
Views
Activity
Nov ’22
Reply to How to tap Push Notification UITest (Xcode 13, iOS15)?
This should be opened again. We still get this errors until reconnecting and rebooting physically devices.
Replies
Boosts
Views
Activity
Oct ’22
Reply to Getting " ITMS-90165" when uploading ipa on Testflight
same here using Xcode 13.3.1
Replies
Boosts
Views
Activity
Apr ’22
Reply to “iPhone” is busy: Making the device ready for development
We got the same issue with iPhone 7 and iPhone XS, both iOS 15.4.1 and Xcode 13.3.1
Replies
Boosts
Views
Activity
Apr ’22
Reply to iOS 15 - UI Test keeps asking pin code for "Enable UI Automation"
Yes, we have the device password set. Setup is a MacMini with MacOS BigSur, Xcode 13 and two devices connected via USB. iPhone XS and iPhone 7, both iOS 15.1. It seems like the frequent asking for device code is new behaviour. I will check if we can remove the password.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to How to tap Push Notification UITest (Xcode 13, iOS15)?
Ok, looks like updating to iOS 15.0.2 fixed this issue.
Replies
Boosts
Views
Activity
Oct ’21
Reply to iOS 15 - New JSONDecoding Decimals issue
moved to separate answer
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to iOS 15 - New JSONDecoding Decimals issue
Hmm, executing my unittests on older simulators 14.3 works, it just came up when running tests on iOS 15 simulators. (both with Xcode 13) our code didn't change for a year or so :D Just ran my playground snippet with Xcode 12.5.1 and it worked there. (output -> 90.21)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to iOS 15 - New JSONDecoding Decimals issue
struct DTO: Decodable {   let amount: Decimal } let backendResponse = """ {"amount": 90.21} """.data(using: .utf8)! let decoded: DTO = try! JSONDecoder().decode(DTO.self, from: backendResponse) debugPrint(decoded.amount)  this results in "90.20999999999999" using the playground
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21